/* Inherit base styles from Kingdoms.css */
@import url('Kingdoms.css');

/* Estilos específicos para la ola y banner */
/* .compact-banner {
    height: 120px !important;
    min-height: 120px !important;
    margin-bottom: 20px;
    background: linear-gradient(to right, rgba(39, 70, 133, 0.8) 0%, rgba(61, 179, 197, 0.8) 100%);
}

.compact-banner .wave {
    bottom: -50px !important;
    transform: scale(0.7);
}

.compact-banner h1 {
    font-size: 2.5rem !important;
    margin-bottom: 10px !important;
    padding-top: 20px;
}

.compact-banner p {
    font-size: 1rem !important;
    margin-bottom: 0 !important;
} */

/* Custom table styles */
.kingdoms-table td {
    vertical-align: middle;
}

.kingdoms-table th {
    background-color: #90aecb;
    color: black !important;
    font-weight: 600;
    font-size: var(--kingdom-font-size-xxl);
}

.migration-info-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #666;
}

@media (max-width: 768px) {
    .compact-banner {
        height: 100px !important;
    }

    .compact-banner h1 {
        font-size: 2rem !important;
    }

    .compact-banner p {
        display: none;
    }

    .kingdoms-table th,
    .kingdoms-table td {
        padding: 8px 4px;
        font-size: var(--kingdom-font-size-md);
    }
}

@media (max-width: 480px) {
    .kingdoms-table th,
    .kingdoms-table td {
        padding: 6px 2px;
        font-size: var(--kingdom-font-size-sm);
    }
}