body {
    font-family: 'Arial', sans-serif;
    background-color: #000; /* Głębokie, niemal czarne tło */
    color: #eeeeee;           /* Delikatnie jaśniejszy tekst */
    margin: 0;
    padding: 1rem;
}

.main-container {
    display: flex;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 0 15px rgba(176, 157, 72, 0.6); /* Delikatny neonowy cień */
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    margin: auto;
    background-color: #CCCCCC; 
    filter: brightness(1.1) contrast(1.5) saturate(1.8);
    position: relative;
}

.form-container, .sidebar {
    padding: 0.75rem;
    box-sizing: border-box;
    background-color: rgba(26, 26, 26, 0.85); /* Ciemnoszare, półprzezroczyste */
}

.form-container {
    flex: 2;
}

.sidebar {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

h2 {
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
    color: #A29768; /* Neonowy turkus */
    text-align: center;
   
}

.toggle-buttons {
    display: flex;
    margin-bottom: 0.75rem;
}

.toggle-button {
    flex: 1;
    padding: 0.35rem;
    border: 2px solid #A29768; /* Neonowy obrys */
    background-color: transparent;
    cursor: pointer;
    text-align: center;
    font-size: 0.95rem;
    color: #A29768;
    transition: all 0.3s ease;
}

.toggle-button:hover,
.toggle-button.active {
    background-color: #A29768; 
    color: #0b0b0b; /* Kontrastowe tło przycisku po aktywacji */
}

.form-group {
    margin-bottom: 0.85rem;
}

.form-group.row {
    display: block;
}

.form-group.row .col {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0.65rem; 
}

.form-group label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
    color: #bbbbbb;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.35rem;
    border: 2px solid #333;
    border-radius: 5px;
    background-color: rgba(34, 34, 34, 0.85);
    font-size: 0.95rem;
    color: #f5f5f5;
    box-sizing: border-box;
    text-transform: uppercase;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #A29768; 
    background-color: rgba(51, 51, 51, 0.85);
}

button {
    border: none;
    padding: 0.35rem 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    background-color: #333; 
    color: #f5f5f5;
}

button:hover {
    background-color: #A29768;
    color: #0b0b0b;
}

.result {
    font-size: 0.95rem;
    color: #fff;
    margin-top: 0.85rem;
}

.location-input {
    text-transform: uppercase;
}

/* Sekcja ze zdjęciami samochodów */
.car-images {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0.85rem;
}

.passenger-warning {
    font-size: 1.2em;
    color: red; /* Ostrzeżenie pozostaje mocno widoczne */
    margin-top: 20px;
    text-align: center;
}

.car-image {
    width: 100%;
    max-width: 50%;
    margin-bottom: 0.85rem;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.car-image img {
    width: 100%;
    height: auto;
    border: none;
}

.car-details {
    position: absolute;
    top: 50%;
    left: 118%; 
    transform: translateY(-50%);
    text-align: center;
    width: 80%;
}

.car-details .car-type {
    font-size: 0.95rem;
    font-weight: bold;
    color: #A29768; /* Podkreślenie ważnych informacji */
}

.car-details .passengers {
    font-size: 0.80rem;
    display: block;
    margin: 0.35rem 0;
    color: #aaa;
}

.car-details .price {
    font-size: 0.95rem;
    font-weight: bold;
    color: #0cf; 
}

.car-image.selected {
    transform: scale(1.1);
}

/* Loader */
#loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1.2rem;
    z-index: 1000;
}

/* Notatka */
.note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #bbb;
}

.submit-container {
    display: flex;
    align-items: center;
    gap: 15px; 
}

.price-info {
    font-size: 0.9em;
    color: #A29768; /* Neonowa cena */
    background-color: #1a1a1a; 
    margin: 0;
}
