.colors {
    background-color: #212542;
    background-color: #303853;
    background-color: #EDEFFC;
}

.tabel_screen {
    background-color: rgba(6, 10, 22, 0.55);
    transition: opacity .18s ease, transform .18s ease;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    width: 100%;
    height: 100%;
    position: absolute;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1160;
}

.tabel_card {
    background-color: #303853;
    width: 70%;
    height: 80%;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    animation: fadeInCard 0.4s ease;
}


@keyframes fadeInCard {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.tabel_card_lower {
    position: relative;
    background-color: transparent;
    width: 100%;
    height: 30px;
    display: flex;
    align-items: start;
    justify-content: end;
}

.tabel_card_exit {
    position: absolute;
    top: -20px;
    right: -20px;
    background-color: rgb(226, 56, 56);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 30px;
    font-family: roboto;
    border: none;
    outline: none;
    color: white;
    transition: ease 0.3s;
    user-select: none;
    cursor: pointer;
    transform: rotate(45deg);
}

.tabel_card_exit:hover {
    background-color: rgb(165, 41, 41);
    scale: 1.1;
}

.tabel_card_upper {
    background-color: #5b6688;
    width: calc(100% - 80px);
    height: calc(100% - 60px);
    display: block;
    overflow-y: auto;
    border-radius: 5px;
    padding: 0 0 10px 20px;
    color: #C3EEB7;
}

.tabel_frame {
    background-color: #2b2b40;
    height: 40px;
    width: calc(100% - 20px);
    margin-top: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    transition: background 0.2s ease;
}

.tabel_frame:hover {
    background-color: #3a3a55;
}

.tabel_frame_info {
    background-color: transparent;
    width: 100%;
    height: 100%;
    color: #e0e0ff;
    font-size: large;
    font-weight: 700;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: start;
    font-family: sans-serif;
    word-break: break-word;
    overflow: hidden;
}

.tabel_frame_btn_backer {
    background-color: transparent;
    min-width: 260px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    margin-right: 20px;
}

.excel_tabel_btn,
.excel_original_btn {
    background-color: #4caf50;
    width: 120px;
    height: 30px;
    border-radius: 5px;
    border: 0;
    outline: 0;
    color: whitesmoke;
    transition: background 0.2s ease;
    user-select: none;
    cursor: pointer;
}

.excel_tabel_btn:hover,
.excel_original_btn:hover {
    background-color: #388839;
}










































.tabel_card_upper::-webkit-scrollbar {
    width: 10px;
}

.tabel_card_upper::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 10px;
}

.tabel_card_upper::-webkit-scrollbar-thumb {
    background: #1a1f30;
    border-radius: 10px;
    border: none;
}

.tabel_card_upper::-webkit-scrollbar-thumb:hover {
    background: #3d4868;
}

.tabel_card_upper::-webkit-scrollbar-corner {
    background: #e0e0e0fd;
}