/* admin.css - Полная версия */
:root {
    --navy: #13315C;
    --sage: #A5B394;
    --cream: #f4f8e9;
    --cream-dark: #dee0d7;
    --white: #FFFFFF;
}

body { 
    font-family: 'Inter', sans-serif; 
    background: #f4f8e9; /* Фон Cream для всей админки */
    color: #13315C;
    padding: 20px;
    min-height: 100vh;
}

h1, .login-title, .label-text { 
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 900;
    text-transform: uppercase;
}

/* Поля ввода */
.input-box { 
    width: 100%; 
    padding: 16px; 
    background: #FFFFFF !important;
    border-radius: 20px; 
    border: 2px solid #A5B394 !important; 
    font-family: 'Inter', sans-serif;
    font-weight: 600; 
    color: #13315C;
    transition: all 0.3s ease;
}

.input-box:focus {
    border-color: #13315C !important;
    outline: none;
    box-shadow: 0 0 0 4px rgba(19, 49, 92, 0.1);
}

/* Кнопки в админке */
button {
    border-radius: 15px !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.bg-blue-600 { background-color: #13315C !important; }
.bg-green-600 { background-color: #A5B394 !important; }

/* Карточка отеля в списке */
.admin-hotel-card {
    background: white;
    border-radius: 2rem;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid #D8E2B5;
}