/* /mnt/api.uparking.ru/scripts/adm/style.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* === Главное меню (навбар) === */
.navbar {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    margin-bottom: 30px;
    border-radius: 8px;
}

.navbar-title {
    font-weight: 600;
    font-size: 18px;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    background: #e3f2fd;
    color: #1976d2;
}

.logout-link {
    color: #e74c3c !important;
}

.logout-link:hover {
    background: #ffebee !important;
    color: #c62828 !important;
}


.login-form {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    max-width: 400px;
    margin: 100px auto;
}
input[type="text"], input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}
button {
    background: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
button:hover {
    background: #0056b3;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}
th {
    background: #eee;
}
.booking-row {
    cursor: pointer;
    transition: background 0.2s;
}

.booking-row:hover {
    background: #e3f2fd !important;
}

.btn-link, .btn-print {
    display: inline-block;
    padding: 4px 8px;
    margin: 2px;
    border-radius: 4px;
    font-size: 12px;
    text-decoration: none;
    cursor: pointer;
}

.btn-link {
    background: #e0e0e0;
    color: #333;
}

.btn-link:hover {
    background: #d0d0d0;
}

.btn-print {
    background: #9c27b0;
    color: white;
    border: none;
}

.btn-print:hover {
    background: #7b1fa2;
}
