@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
}

#main_logo {
    width: 230px;
    height: 190px;
    position: relative;
    animation: logo_in 0.6s ease-in;
}
#main_footer {
    display: flex;
    justify-content: center;
    align-items: center;
}

#account_name {
    position: absolute;
    left: 10px;
}

#page_content {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#tools_div {
    display: flex;
    background-color: #4b4b4b;
    border-radius: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 10px;
    gap: 10px;
}

@keyframes logo_in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes content_in {
    from {
        opacity: 0;
        transform: scale(0.9);
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

#page_content {
    animation: content_in 0.4s ease-in;
}

.table_separator {
    display: flex;
    color: white;
    position: relative;
    background-color: #3a3a3a;
    width: 100%;
    height: 50px;
    padding: 0;
    margin: 0;
    align-content: center;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    background: linear-gradient(
    to right,
    #e5e5e5,
    #555,
    #e5e5e5
  );
}

.table-wrapper {
    width: 100%;
}

.table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.tbl {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    font-family: serif;
}

.tbl thead th {
    background: #dedede;
    border-bottom: 2px solid #333;
    padding: 10px 12px;
    text-align: left;
}

.tbl tbody td {
    border-bottom: 1px solid #bbb;
    padding: 9px 12px;
}

.tbl tbody tr:nth-child(even) {
    background: #f6f6f6;
}

.tbl tbody tr:hover {
    background: #e9e9e9;
}

.tbl td.center {
    text-align: center;
}

.tbl .btn {
    padding: 5px 12px;
    border: 1px solid #444;
    background: #f0f0f0;
    font-family: serif;
    cursor: pointer;
}

.tbl .btn:hover {
    background: #e2e2e2;
}

div table {
    color: rgb(24, 24, 24);
    font-size: 20px;
    font-weight: 900;
}

td .b_button {
    padding-left: 50px;
    padding-right: 50px;
}

