#parking-app {
    width: 100%;
    max-width: 1200px;
    padding: 20px;
}

#parking-app .main-button {
    display: block;
    margin: 0 auto;
    padding: 12px 24px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#parking-app .main-button:hover {
    background: #1d4ed8;
}

#parking-app .p-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#parking-app .p-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

#parking-app .modal {
    background: white;
    border-radius: 8px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: scale(0.95);
    transition: all 0.3s ease;
    position: relative;
}

#parking-app .p-modal-overlay.show .modal {
    transform: scale(1);
}

#parking-app .modal-header {
    margin-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 16px;
}

#parking-app .modal-header h2 {
    color: #111827;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

#parking-app .modal-header .subtitle {
    color: #6b7280;
    font-size: 14px;
}

#parking-app .close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 20px;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.2s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#parking-app .close-btn:hover {
    color: #374151;
}

#parking-app .form-section {
    margin-bottom: 24px;
}

#parking-app .form-section h3 {
    color: #111827;
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 600;
}

#parking-app .vehicle-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#parking-app .vehicle-option {
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: white;
}

#parking-app .vehicle-option:hover {
    border-color: #9ca3af;
}

#parking-app .vehicle-option.selected {
    border-color: #2563eb;
    background: #eff6ff;
}

#parking-app .vehicle-option .vehicle-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#parking-app .vehicle-option .vehicle-name {
    font-weight: 500;
    color: #111827;
    font-size: 14px;
}

#parking-app .vehicle-option .vehicle-price {
    color: #2563eb;
    font-weight: 600;
    font-size: 14px;
}

#parking-app .quantity-duration {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

#parking-app .quantity-selector {
    display: flex;
    align-items: center;
    gap: 12px;
}

#parking-app .quantity-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #d1d5db;
    background: white;
    color: #374151;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#parking-app .quantity-btn:hover {
    border-color: #9ca3af;
    background: #f9fafb;
}

#parking-app .quantity-display {
    font-size: 16px;
    font-weight: 500;
    color: #111827;
    min-width: 24px;
    text-align: center;
}

#parking-app .duration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

#parking-app .duration-btn {
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    background: white;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

#parking-app .duration-btn:hover {
    border-color: #9ca3af;
    background: #f9fafb;
}

#parking-app .duration-btn.selected {
    border-color: #2563eb;
    background: #2563eb;
    color: white;
}

#parking-app .custom-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.2s ease;
}

#parking-app .custom-input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

#parking-app .total-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    padding: 16px;
    border-radius: 6px;
    margin: 24px 0;
}

#parking-app .total-section .total-label {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 4px;
}

#parking-app .total-amount {
    font-size: 24px;
    font-weight: 700;
    color: #111827;
}

#parking-app .book-btn {
    width: 100%;
    padding: 12px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#parking-app .book-btn:hover {
    background: #1d4ed8;
}

@media (max-width: 768px) {
    #parking-app .modal {
        padding: 24px;
        margin: 16px;
    }

    #parking-app .quantity-duration {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    #parking-app .duration-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.parking-button {
    margin-top: 10px;
    width: 220px;
    padding: 12px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 560;
    cursor: pointer;
    transition: background-color 0.2s ease;
}




.remove-btn {
    width: 220px;
    padding: 12px;
    background: #96389b;
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 560;
    transition: background-color 0.2s ease;
    margin-top: 10px;
}

.remove-btn:hover {
    background: #c74fce;
}