﻿/* Styles for overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: flex-end; /* Align content to the right */
    align-items: center;
    z-index: 9999;
}

/* Styles for popup */
.popup {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 100%;
    height: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
}



/* Close button styles */
.close-btn {
    position: absolute;
    top: -5px;
    font-size: 30px;
    right: 10px;
    cursor: pointer;
}




.popup-header {
    /* Styles for the popup header */
    position: sticky;
    top: 0;
    background-color: #fff;
    z-index: 1;
    padding: 10px;
}

.popup-content {
    /* Styles for the middle content */
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 10px;
    scrollbar-width: thin;
    scrollbar-color: #f79131;
}

    .popup-content::-webkit-scrollbar {
        width: 6px;
    }

    .popup-content::-webkit-scrollbar-track {
        background-color: #f1f1f1;
    }

    .popup-content::-webkit-scrollbar-thumb {
        background-color: #f79131;
    }


.popup-footer {
    /* Styles for the popup footer */
    position: sticky;
    bottom: 0;
    background-color: #fff;
    z-index: 1;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.button-group {
    /* Styles for the button group in the footer */
    /* If you have multiple buttons, you can adjust the spacing and alignment here */
}

.popup-content .row {
    /* Optional: Add additional styling to the content row if needed */
    /* ... */
}
