/* --------------------------------------------------
   sat1.css – SAT template for SkyForm
   Dark blue background with blue tones.
   Font: Roboto
-------------------------------------------------- */

body {
    background: #0a1a2e;
    color: #d0e0f0;
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 1000px;
    margin: auto;
    background: rgba(10, 26, 46, 0.95);
    border: 1px solid #2a4a6a;
    border-radius: 12px;
    padding: 30px 35px;
    box-shadow: 0 0 20px rgba(0, 120, 210, 0.15);
}

h1, h2, h3 {
    color: #6ab0f0;
    font-weight: 500;
}

h1 {
    font-size: 2em;
    margin: 0 0 5px 0;
}

h2 {
    font-size: 1.4em;
    margin-top: 25px;
    border-bottom: 1px solid #2a4a6a;
    padding-bottom: 5px;
}

h3 {
    font-size: 1.15em;
    color: #4a90d9;
    margin-top: 20px;
}

.subtitle {
    text-align: center;
    font-size: 0.9em;
    color: #8ab0d0;
    margin-bottom: 25px;
}

/* En-tête avec logo */
.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.logo {
    height: 8em;
    width: auto;
}

/* Tableaux */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
    font-size: 0.95em;
}

strong{
    color:#a0c0ff;
}

th, td {
    border: 1px solid #2a4a6a;
    padding: 6px 10px;
}

th {
    background: #1a2e44;
    color: #8ab8e0;
    font-weight: 500;
}

/* --- Boîte Soleil --- */
.sun-box {
    background: rgba(20, 40, 60, 0.5);
    border: 1px solid #2a5a7a;
    border-radius: 8px;
    padding: 15px 20px;
    margin: 20px 0;
}

.sun-header {
    text-align: center;
    font-size: 1.0rem;
    border-bottom: 1px dashed #2a5a7a;
    padding-bottom: 8px;
    margin-bottom: 12px;
}

.sun-columns {
    display: flex;
    justify-content: space-around;
}

.sun-col {
    flex: 1;
    padding: 8px;
}

.sun-table td {
    border: none;
    border-bottom: 1px dotted #2a4a6a;
    padding: 4px 8px;
}

.sun-notes {
    text-align: center;
    margin-top: 12px;
    border-top: 1px dashed #2a5a7a;
    padding-top: 10px;
    font-style: italic;
}

/* --- Lune --- */
.moon-layout {
    border: none;
}

.moon-img-cell {
    width: 140px;
    vertical-align: top;
    padding: 10px;
    text-align: center;
}

.moon-info-cell {
    vertical-align: top;
    padding: 10px;
}

.moon-img {
    max-width: 130px;
    border: 1px solid #2a5a7a;
    border-radius: 50%;
    background: #000;
}

/* --- Planètes inférieures --- */
.inferior-planets-table {
    border: none;
}

.inferior-planet-cell {
    vertical-align: top;
    width: 50%;
    padding: 8px;
}

/* --- Planètes supérieures --- */
.superior-planet {
    background: rgba(20, 40, 60, 0.4);
    border: 1px solid #2a5a7a;
    border-radius: 8px;
    padding: 12px 15px;
    margin: 12px 0;
}

.superior-header {
    font-weight: 800;
    font-size: 1.4rem;
    color: #6ab0f0;
    border-bottom: 1px solid #2a4a6a;
    padding-bottom: 4px;
    margin-bottom: 8px;
}

.superior-columns {
    display: flex;
    justify-content: space-between;
}

.superior-col-left,
.superior-col-right {
    flex: 1;
    padding: 5px 10px;
}

.superior-col-left p,
.superior-col-right p {
    margin: 4px 0;
}

.superior-col-right ul {
    margin: 4px 0 4px 20px;
    padding: 0;
}

.superior-footer {
    margin-top: 10px;
    padding-top: 6px;
    border-top: 1px dashed #2a4a6a;
    text-align: center;
    font-size: 0.95em;
}

.planet-card {
    background: rgba(20, 40, 60, 0.3);
    border: 1px solid #2a5a7a;
    border-radius: 5px;
    padding: 10px;
}

/* --- Pied de page --- */
footer {
    margin-top: 30px;
    text-align: center;
    font-size: 0.85em;
    color: #5a7a9a;
    border-top: 1px solid #2a4a6a;
    padding-top: 15px;
}