.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 10px auto;
    border: 1px solid #888;
    width: calc(100% - 40px);
    max-width: 600px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.search-bar {
    padding: 10px;
    background-color: #f2f2f2;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

#search-input {
    display: block;
    margin: 0;
    color: inherit;
    width: 100%;
    font-size: 1rem;
    font-weight: inherit;
    border: none;
    border-radius: 0.4rem;
    padding: 2px;
}

.table-container {
    max-height: 200px;
    overflow-y: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

/* th {
    padding: 10px;
    position: sticky;
    top: 0;
    text-align: center;
} */

td {
    padding: 40px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

tr:hover {
    background-color: #f5f5f5;
    cursor: pointer;
}

.branch-text {
    font-weight: bold;
}

@media only screen and (max-width: 768px) {
    .modal-content {
        margin: 50px auto;
    }

    .table-container {
        max-height: 200px;
        overflow-y: auto;
    }

    table {
        width: 100%;
        border-collapse: collapse;
    }

    td {
        padding: 20px;
        border-bottom: 1px solid #ddd;
        text-align: left;
    }

    th {
        background-color: #f2f2f2;
    }

    tr:hover {
        background-color: #f5f5f5;
        cursor: pointer;
    }

    iframe {
        width: 100%;
        height: 200px;
        border: none;
    }

}