.col {
    flex-grow: 1;
}
.row {
    display: flex;
    align-items: center;
    position: relative;
}
.text-black{
    color: black !important;
}
.card {
    background-color: white;
    border-radius: 8px;
    margin: 10px;
    padding: 10px;
    border: none;
}
.input{
    border: 1px solid #043d2e !important;
    border-radius: 5px !important;
    /* width: 100% !important; */
    margin-left: -10px !important;
    margin-right: -10px !important;
}
.input svg{
    height: 2em !important;
    width: 2em !important;
}

.input .svg_code{
    height: 2.8em !important;
    width: 2.8em !important;
}
.input button{
   padding: 5px !important;
   margin:0px !important;
   /* background-color:white !important;
   color:black !important; */
    border: 1px solid #043d2e !important;
}


/* Overlay for the shadow effect */
.custom-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dimmed background */
    z-index: 999; /* Below the modal */
}

/* Modal Container */
.custom-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    width: 500px; /* Adjust width as needed */
    max-width: 90%; /* Responsive max width */
}

/* Modal Content Box */
.custom-modal-content {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* Modal Header */
.custom-modal-header {
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
    background-color: #f8f9fa;
}

/* Modal Title */
.modal-title {
    margin: 0;
    font-size: 18px;
}

/* Close Button */
.close {
    cursor: pointer;
    font-size: 24px;
    color: #aaa;
    font-weight: bold;
}

.close:hover {
    color: #000;
}

/* Modal Body */
.custom-modal-body {
    padding: 20px;
    font-size: 16px;
}

/* Modal Footer */
.custom-modal-footer {
    padding: 10px 20px;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: flex-end;
    background-color: #f8f9fa;
}

/* Close Button in Footer */
.close-btn {
    background: #043d2e;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.close-btn:hover {
    background: #043d2e;
}
