.custom-file-input-button{
    background-color: var(--color_1)!important;
}
/* Basic Reset */
.form_main_div{}

/* Form Buttons */
.form-buttons {
    text-align: center;
    margin: 20px;
}
.form_heading{
    color: var(--color_1);
    border-bottom:2px solid var(--color_1);
}
.form-buttons button {
    background-color: #4a2d14;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    margin: 10px;
    border-radius: 5px;
}

.form-buttons button:hover {
    background-color: #ffcc00;
    color: #4a2d14;
}

/* Popup Modal */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 1;
    /*height: 100dvh;*/
    /*padding-top: 50px;*/
    /*padding-bottom: 50px;*/
    backdrop-filter: blur(5px);
    
}

/* Popup Content */
.popup-content {
    position: absolute;
    top: 50%;
    left:50%;
    transform: translate(-50%,-50%);
    background: var(--color_new_2);
    padding: 20px;
    width: 90%;
    max-width: 400px;
    border-radius: 10px;
    margin: auto;
    max-height: 90%;
    overflow-y: auto;
}
/* Customize scrollbar */
.popup-content::-webkit-scrollbar {
    width: 8px; /* Scrollbar width */
}

/* Scrollbar track (background) */
.popup-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px; /* Rounded track */
}

/* Scrollbar thumb (draggable part) */
.popup-content::-webkit-scrollbar-thumb {
    background: var(--color_3); /* Brown color */
    border-radius: 15px; /* Rounded scrollbar */
}

/* On hover */
.popup-content::-webkit-scrollbar-thumb:hover {
    background: #6D4427; /* Darker shade on hover */
}


.form_group{
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
}
.popup-content label{
    /*color: var(--color_new_1);*/
    color: var(--color_1);
    font-size: 14px;
    font-weight: 600;
}
/* Close Button */
.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input, select {
    padding: 10px 8px;
    font-size: 16px;
    width: 100%;
    border: 1px solid var(--color_4);
    border-radius: 5px;
    background: #fff;
    color: var(--color_new_1);
}

button[type="submit"] {
    background: #4a2d14;
    color: #fff;
    padding: 10px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    border-radius: 5px;
    margin-top: 10px;
}

button[type="submit"]:hover {
    background: #ffcc00;
    color: #4a2d14;
}
}

/* Responsive for Mobile */
@media (max-width: 480px) {
.form_main_div{
    .popup-content {
        width: 95%;
        padding: 15px;
    }

    button {
        font-size: 16px;
    }
 
}
}
