.database-page {
    width: 100%;
    height: 100%;
    background-color: #fbfbf6;
}
.searchDataBar {
    width: 100%;
    height: 15%;
    background-color: #f7f7f7;
    display: flex;
    padding: 15px;
}
.collections {
    height: 85%;
    width: 100%;
    display: flex;
}
.dataCollections {
    height: 100%;
    width: 15%;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #f7f7f7;
    scrollbar-width: none;
}
.collectionInfo-container {
    height: 100%;
    width: 85%;
}
.collectionInfo {
    height: 95%;
    width: 100%;
    overflow-y: auto;
    padding: 10px;
    scrollbar-width: none;
}

.collectionInfoData {
    display: flex;
    border: 1px solid #ccc;
    padding: 10px;
    margin: 5px;
    border-radius: 5px;
    background-color: #f9f9f9;
    width: 98%;
    height: 7%;
    align-items: center;
}

.dataCheckbox {
    margin-right: 10px;
}
.collectionInfoDataContent {
    width: 95%;
    height: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.loadingPrompt {
    font-weight: bold;
    font-size:30px;
    margin-left: 500px;
    margin-top: 300px;
}

.collectionsButton {
    font-weight: bold;
    width: 100%;
    padding: 15px 10px;
    padding-left: 20px;
    background-color: #f7f7f7;
    border: none;
    cursor: pointer;
    text-align: left;
}
.keyFilter_container {
    width: 15%;
    padding: 10px;
}
.condition_container {
    width: 10%;
    padding: 10px;
}
.searchcontent_container {
    width: 50%;
    height: 100%;
    padding: 10px;
}
.search-content {
    width: 100%;
    display: flex;
    align-items: center;
    text-align: center;
    flex: 1;
    height: 55%;
    border: 1px solid #ccc;
    padding: 10px;
    background-color: #fbfbf6;
    justify-content: center;
}
.number_container {
    width: 7%;
    padding: 10px;
}
.selectAllData {
    width: 18%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vh;
}



.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
    background-color: white;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 40%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.3s;
    position: relative;
    text-align: left;
    max-height: 90%;
    overflow: hidden;
}

.close-popup {
    width: 100%;
    height: 5vh;
}
.info-popup {
    width: 100%;
    max-height: 75vh; 
    min-height:50vh;
    overflow-y: auto;
}
.popup-close {
    color: #aaa;
    float: right;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

    .popup-close:hover,
    .popup-close:focus {
        color: black;
        text-decoration: none;
    }


#popupData {
    margin-bottom: 20px; 
}
.popup-row {
    margin: 10px;
}
    .popup-row span {
        word-break: normal;
        word-wrap: break-word;
        white-space: pre-wrap; 
    }

.popup-actions {
    text-align: center;
    width: 100%;
    height:5vh;
}

    .popup-actions button {
        width:20%;
        height: 90%;
        margin: 10px 80px;
        padding: 8px 12px;
        cursor: pointer;
        background-color: #add8e6;
        font-weight: bold;
        border-radius: 5px;
        border: 0.5px solid #6495ed;
    }




.database-pagination {
    height:5%;
    display: flex;
    justify-content: center;
    align-items: center;
/*    margin: 20px 0;*/
}
.pagination-button {
    cursor: pointer;
    width: 5%;
    height: 95%;
    border: none;
    background-color: transparent;
}

