/* ========================================
   Site Layout
   ======================================== */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
}

/* ========================================
   Form Styles
   ======================================== */

form[name='person'] {
    max-width: 500px;
    margin: 0 auto;
}

fieldset {
    margin-bottom: 20px;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

legend {
    font-weight: bold;
    color: #2c3e50;
    padding: 0 8px;
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    margin-bottom: 4px;
    font-weight: 600;
    color: #34495e;
}

.form-group input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}

.form-group input:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: 0 0 3px rgba(52, 152, 219, 0.3);
}

button[type="submit"] {
    display: block;
    width: 100%;
    padding: 12px 30px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

button[type="submit"]:hover {
    background: #2980b9;
}

/* ========================================
   Errors
   ======================================== */
.errors {
    background: #fee;
    border: 1px solid #e74c3c;
    padding: 10px 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.errors ul {
    margin: 0;
    padding-left: 20px;
}

.errors li {
    color: #c0392b;
}

/* ========================================
   Theme Actions
   ======================================== */
.theme-actions {
    margin-bottom: 20px;
}

.theme-actions a {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
}

.theme-actions a:hover {
    text-decoration: underline;
}

/* ========================================
   Theme Content (numerologie renderers)
   ======================================== */
.theme-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.2;
}

.theme-content h1 {
    font-size: 1.3em;
    color: #2c3e50;
    text-align: center;
}

.theme-content h2 {
    font-size: 1.1em;
    color: #34495e;
    margin-top: 30px;
    text-align: center;
    padding: 6px 10px;
    background-color: #EEE;
}

.theme-content h3 {
    font-size: 1em;
    color: #7f8c8d;
}

.theme-content h4 {
    font-size: 0.9em;
    font-weight: normal;
    color: #95a5a6;
}

.theme-content h5 {
    font-size: 0.9em;
    font-weight: normal;
    color: #bdc3c7;
}

.theme-content p {
    margin-bottom: 10px;
}

.theme-content p.vibration,
.theme-content p.cycle,
.theme-content p.realisation,
.theme-content p.expression {
    display: none;
}

.theme-content table {
    border-collapse: collapse;
    max-width: 100%;
    margin: 20px 0;
}

.theme-content th,
.theme-content td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.theme-content th {
    background-color: #f2f2f2;
}

.theme-content table.cdv-table,
.theme-content table.cdv-table td {
    border: 0 none;
}

.theme-content table.inclusion-table td {
    width: 30px;
    text-align: center;
}

.theme-content .description {
    background-color: #f9f9f9;
    padding: 15px;
    margin: 15px 0;
    border-left: 4px solid #3498db;
}

@media print {
    .theme-actions {
        display: none;
    }
}