#twaPopup {
    position: relative;
    top: 50;
    left: 0;
    width: auto;
    height: auto;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#twaContent {
    background-color: white;
    border-radius: 5px;
    width: 90%;
    max-width: 800px;
    height: auto;
    max-height: 600px;
    display: flex;
    flex-direction: column;
}

.twa-title {
	font-size: 10px
    padding: 10px;
    margin: 0;
    background-color: #f2f2f2;
    border-bottom: 1px solid #ddd;
}

.twa-table-wrapper {
    flex-grow: 1;
    overflow: auto;
    padding: 5px;
}

.twa-table {
    width: auto;
    border-collapse: collapse;
    font-size: 12px;
}

.twa-table th, .twa-table td {
    border: 1px solid #ddd;
    padding: 4px;
    text-align: center;
}

.twa-table th {
    background-color: #f2f2f2;
    position: sticky;
    left: 0;
    z-index: 1;
}

.twa-close-btn {
    padding: 5px;
    background-color: #f2f2f2;
    border: none;
    border-top: 1px solid #ddd;
    cursor: pointer;
}

@media screen and (max-width: 600px) {
    #twaContent {
        width: 95%;
        height: 95%;
    }

    .twa-table {
        font-size: 11px;
    }

    .twa-table th, .twa-table td {
        padding: 4px;
    }
}