* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-color: #ff6b6b;
    --secondary-color: #ffb366;
    --dark-color: #1e1e1e;
    --light-color: #f8f9fa;
    --text-color: #333;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --info-color: #17a2b8;
}

body {
    font-family: 'Segoe UI', 'Roboto', 'Open Sans', Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== ENCABEZADO Y NAVEGACIÓN ========== */
header {
    background: linear-gradient(135deg, var(--dark-color) 0%, #2d2d2d 100%);
    color: white;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo h1 {
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    display: inline-block;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.login-btn-navbar {
    padding: 8px 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
}

.login-btn-navbar:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
}

/* ========== MENÚ HAMBURGUESA ========== */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    gap: 5px;
    z-index: 101;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-login {
    display: none;
}

/* ========== HERO ========== */
.hero {
    background: linear-gradient(135deg, var(--dark-color) 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: white;
    padding: 120px 20px;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ccc;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    display: inline-block;
    text-decoration: none;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-appearance: none;
    appearance: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

.cta-button:active {
    transform: translateY(-1px);
}

/* ========== SECCIONES GENERALES ========== */
.promociones,
.servicios-detalle,
.papel,
.galeria,
.reservas,
.contacto {
    padding: 80px 20px;
}

.promociones {
    background: linear-gradient(135deg, #fff5f5 0%, #fffbf0 100%);
}

.papel {
    background: linear-gradient(135deg, #f5f5f5 0%, #efefef 100%);
}

.reservas {
    background: linear-gradient(135deg, #f9f9f9 0%, #f1f1f1 100%);
}

.promociones h2,
.servicios-detalle h2,
.papel h2,
.galeria h2,
.reservas h2,
.contacto h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

/* ========== GRILLAS ========== */
.promociones-grid,
.papel-grid,
.galeria-grid,
.tab-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* ========== TARJETAS ========== */
.promo-card,
.papel-card,
.galeria-item,
.tab-item {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.promo-card:hover,
.papel-card:hover,
.galeria-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.promo-card {
    border-top: 4px solid var(--primary-color);
    text-align: center;
}

.promo-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.promo-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.promo-discount {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.promo-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-top: 1rem;
}

/* ========== GALERÍA ========== */
.galeria-placeholder {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    border-radius: 8px;
}

.galeria-info {
    padding: 1rem;
}

.galeria-info h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.galeria-info p {
    font-size: 0.9rem;
    color: #888;
}

/* ========== SERVICIOS TABS ========== */
.tab-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: 2px solid var(--border-color);
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 15px 25px;
    font-size: 1rem;
    cursor: pointer;
    color: #666;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.tab-item {
    border-left: 4px solid var(--secondary-color);
}

.tab-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.tab-item ul {
    list-style: none;
    padding-left: 0;
}

.tab-item ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.tab-item ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
}

/* ========== PAPEL ========== */
.papel-card {
    border-left: none;
}

.papel-badge {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: white;
}

.papel-estandar .papel-badge { background: #17a2b8; }
.papel-premium .papel-badge { background: var(--secondary-color); }
.papel-ultra .papel-badge { background: #9c27b0; }

/* ========== RESERVAS ========== */
.reservas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.reservas-form-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.radio-group,
.checkbox-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.radio-label input,
.checkbox-label input {
    width: auto;
    margin: 0;
    cursor: pointer;
}

.reservas-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--secondary-color);
}

.info-card h4 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.info-card p {
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.95rem;
}

.info-card strong {
    color: var(--primary-color);
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
}

/* ========== CONTACTO ========== */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.contact-item {
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.contact-item h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-form {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form button {
    align-self: flex-start;
}

/* ========== FOOTER ========== */
.footer {
    background: linear-gradient(135deg, var(--dark-color) 0%, #2d2d2d 100%);
    color: #ccc;
    padding: 3rem 20px 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h5 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

/* ========== AUTH MODAL ========== */
.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-color) 0%, #2d2d2d 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.auth-modal.active {
    opacity: 1;
    visibility: visible;
}

.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.auth-split {
    display: flex;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    position: relative;
    max-width: 800px;
    width: 100%;
    min-height: 500px;
}

.auth-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255,255,255,0.9);
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.auth-side {
    flex: 1;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-login-side {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.auth-register-side {
    background: white;
    color: #333;
}

.auth-side-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo {
    font-size: 3rem;
    margin-bottom: 15px;
}

.auth-side-header h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.auth-side-header p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.auth-side-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.auth-input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 0 15px;
}

.auth-login-side .auth-input-group {
    background: rgba(255,255,255,0.15);
}

.auth-register-side .auth-input-group {
    background: #f5f5f5;
}

.auth-input-icon {
    font-size: 1.2rem;
    margin-right: 10px;
}

.auth-input-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 10px;
    font-size: 1rem;
    color: inherit;
}

.auth-login-side .auth-input-group input {
    color: white;
}

.auth-login-side .auth-input-group input::placeholder {
    color: rgba(255,255,255,0.7);
}

.auth-register-side .auth-input-group input {
    color: #333;
}

.auth-input-group input:focus {
    outline: none;
}

.auth-toggle-pass {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
}

.auth-submit-btn {
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.auth-submit-btn {
    background: white;
    color: #667eea;
}

.auth-submit-register {
    background: linear-gradient(135deg, #ff6b6b, #ffb366);
    color: white;
}

.auth-submit-admin {
    background: #667eea;
    color: white;
}

.auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.auth-switch-btn {
    background: none;
    border: none;
    color: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    margin-top: 10px;
    text-decoration: underline;
    opacity: 0.8;
}

.auth-switch-btn:hover {
    opacity: 1;
}

.auth-switch-btn-light {
    color: #667eea;
}

.auth-error {
    color: #ff6b6b;
    font-size: 0.9rem;
    text-align: center;
    min-height: 20px;
}

.auth-admin-modal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.auth-admin-modal.hidden {
    display: none;
}

.auth-admin-content {
    text-align: center;
    padding: 40px;
}

.auth-admin-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
}

/* ========== RESPONSIVE - TABLETS ========== */
@media (max-width: 1024px) {
    .hero-content h2 {
        font-size: 3rem;
    }

    .promociones h2,
    .servicios-detalle h2,
    .papel h2,
    .galeria h2,
    .reservas h2,
    .contacto h2 {
        font-size: 2.2rem;
    }

    .reservas-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ========== RESPONSIVE - MÓVIL ========== */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: linear-gradient(135deg, var(--dark-color) 0%, #2d2d2d 100%);
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 100;
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        color: white;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-login {
        display: block !important;
    }

    .nav-login a {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        margin: 1rem;
        border-radius: 20px;
        border: none;
    }

    /* Hero */
    .hero {
        padding: 80px 15px;
        min-height: auto;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    /* Secciones */
    .promociones,
    .servicios-detalle,
    .papel,
    .galeria,
    .reservas,
    .contacto {
        padding: 60px 15px;
    }

    .promociones h2,
    .servicios-detalle h2,
    .papel h2,
    .galeria h2,
    .reservas h2,
    .contacto h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    /* Grillas */
    .promociones-grid,
    .papel-grid,
    .galeria-grid,
    .tab-grid {
        grid-template-columns: 1fr;
    }

    /* Tabs */
    .tab-buttons {
        flex-direction: column;
        gap: 0.5rem;
        border-bottom: none;
    }

    .tab-btn {
        padding: 12px 15px;
        border-bottom: none;
        border-left: 3px solid transparent;
        text-align: left;
    }

    .tab-btn.active {
        background: rgba(255, 107, 107, 0.1);
        border-left-color: var(--primary-color);
    }

    /* Formularios */
    .reservas-form-container {
        padding: 1.5rem;
    }

    .radio-group,
    .checkbox-group {
        flex-direction: column;
        gap: 0.8rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }

    /* Info cards */
    .info-card {
        padding: 1.2rem;
    }

    /* Auth Modal */
    .auth-split {
        flex-direction: column;
        min-height: auto;
        max-height: 90vh;
        overflow-y: auto;
    }

    .auth-side {
        padding: 40px 25px;
    }

    .auth-login-side,
    .auth-register-side {
        display: none;
    }

    .auth-login-side.auth-side-hidden,
    .auth-register-side.auth-side-hidden {
        display: flex !important;
    }

    .auth-admin-modal {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
}

/* ========== RESPONSIVE - CELULARES PEQUEÑOS ========== */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .hero {
        padding: 60px 12px;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .promociones,
    .servicios-detalle,
    .papel,
    .galeria,
    .reservas,
    .contacto {
        padding: 50px 12px;
    }

    .promociones h2,
    .servicios-detalle h2,
    .papel h2,
    .galeria h2,
    .reservas h2,
    .contacto h2 {
        font-size: 1.6rem;
    }

    .form-section h3 {
        font-size: 1.15rem;
    }

    .form-group {
        margin-bottom: 1.2rem;
    }

    .auth-side {
        padding: 30px 20px;
    }

    .auth-logo {
        font-size: 2.5rem;
    }

    .auth-side-header h2 {
        font-size: 1.5rem;
    }
}

/* ========== ADMIN PANEL ========== */
.admin-panel {
    display: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    margin: 20px auto;
    border-radius: 10px;
    max-width: 1200px;
}

.admin-panel.active {
    display: block;
}

.admin-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    border-bottom: 2px solid rgba(255,255,255,0.3);
}

.admin-tab-btn {
    background: transparent;
    border: none;
    padding: 10px 20px;
    color: white;
    cursor: pointer;
    font-size: 0.95rem;
    border-bottom: 3px solid transparent;
}

.admin-tab-btn.active {
    border-bottom-color: white;
    background: rgba(255,255,255,0.1);
}

.admin-content {
    display: none;
}

.admin-content.active {
    display: block;
}

.admin-section {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.admin-section h3 {
    margin-bottom: 15px;
}

.admin-form {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 8px;
}

.admin-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.admin-form-group {
    margin-bottom: 15px;
}

.admin-form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.admin-form-group input,
.admin-form-group select,
.admin-form-group textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.admin-table th,
.admin-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.admin-table th {
    background: rgba(255,255,255,0.15);
    font-weight: 600;
}

.btn-success {
    background: #28a745;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.btn-danger {
    background: #dc3545;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.admin-alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.alert-info {
    background: rgba(23, 162, 184, 0.3);
}

@media (max-width: 768px) {
    .admin-tabs {
        gap: 5px;
    }

    .admin-tab-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .admin-form-row {
        grid-template-columns: 1fr;
    }

    .admin-table {
        font-size: 0.85rem;
    }

    .admin-table th,
    .admin-table td {
        padding: 8px;
    }
}
