* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f5f5;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    height: 60px;
    margin-bottom: 10px;
}

nav {
    margin-top: 20px;
}

nav a {
    padding: 10px 20px;
    margin-right: 10px;
    background: #f0f0f0;
    text-decoration: none;
    border-radius: 5px;
    color: #333;
}

nav a.active {
    background: #C4A962;
    color: white;
}

.user-info {
    margin-left: auto;
    padding: 10px 15px;
    color: #666;
    font-size: 14px;
}

.logout-btn {
    background: #dc3545 !important;
    color: white !important;
    margin-left: 10px;
}

.logout-btn:hover {
    background: #c82333 !important;
}

nav {
    display: flex;
    align-items: center;
}

.section {
    background: white;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    font-weight: 500;
    color: #555;
}

input, select {
    padding: 10px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 14px;
}

input:focus, select:focus {
    outline: none;
    border-color: #C4A962;
}

.btn-primary {
    background: #C4A962;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background: #b39552;
}

.btn-secondary {
    background: #6c757d;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.btn-add {
    background: #28a745;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.room-block {
    background: #f8f8f8;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 5px;
}

.passenger-row {
    display: grid;
    grid-template-columns: 2fr 1fr auto auto;
    gap: 10px;
    margin-bottom: 10px;
    align-items: center;
}

.passenger-row label {
    display: flex;
    align-items: center;
    font-size: 12px;
    margin: 0;
}

.passenger-row .primary-radio {
    margin-right: 5px;
    width: auto;
}

.results-table {
    width: 100%;
    background: white;
    border-radius: 5px;
    overflow: hidden;
}

.results-table th {
    background: #C4A962;
    color: white;
    padding: 12px;
    text-align: left;
}

.results-table td {
    padding: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.btn-small {
    padding: 5px 10px;
    margin: 0 2px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    background: #C4A962;
    color: white;
}

.search-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}