﻿.submit-btn {
    padding: 12px 24px;
    font-size: 16px;
    height: auto;
    width: auto;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .submit-btn:hover {
        background-color: #45a049;
    }
.price-section {
    font-family: Arial, sans-serif;
}

.original-price {
    text-decoration: line-through; 
    color: #888;
    margin-right: 10px;
    font-size: 18px;
}

.new-price {
    font-size: 22px;
    font-weight: bold;
    color: #e74c3c;
}

    .new-price h3 {
        font-size: 14px;
        color: #2c3e50; 
        margin: 0;
        padding-top: 5px;
    }


.custom-select {
    width: 220px;
    padding: 10px 15px;
    font-size: 16px; 
    border: 2px solid #ccc; 
    border-radius: 8px; 
    background-color: #f5f5f5; 
    color: #333; 
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none; 
    transition: all 0.3s ease-in-out; 
    position: relative;
}

   
    .custom-select::after {
        content: '\25BC'; /* Downward arrow */
        font-size: 16px;
        color: #333;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
    }

    
    .custom-select option {
        font-size: 16px; 
        padding: 10px;
        background-color: #fff; 
        color: #333; 
        border: none;
    }

    .custom-select:hover {
        border-color: #007bff; 
        background-color: #e6f0ff; 
    }

   
    .custom-select:focus {
        outline: none; 
        border-color: #007bff;
        box-shadow: 0 0 8px rgba(0, 123, 255, 0.5); 
    }
