.--box_center {

    margin: 50px auto;
    background-color: white;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    width: 100%;
    box-sizing: border-box;

}

.--form_input {

    width: 100%;
    padding: 1rem;
    margin: 1rem 0;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
    box-sizing: border-box;

}

.--form_input:focus {
    border-color: #007BFF;
}

.--form_button {
    width: 100%;
    padding: 1rem;
    margin: 1rem 0;
    border: none;
    border-radius: 0.5rem;
    background-color: var(--colorBase);
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
}

.--form_button:hover {
    background-color: #0056b3;
}


h1 {
    font-size: 30px;
    color: var(--colorBase);
    text-transform: uppercase;
    font-weight: 300;
    text-align: center;
    margin-bottom: 15px;
}

table {
    width: 100%;
    table-layout: fixed;
}

.tbl-header {
    background-color: rgba(204, 204, 204, 0.541);
    border-radius: 1rem 1rem 0 0;
    overflow: hidden;
}

.tbl-content {
    height: 300px;
    overflow-x: auto;
    margin-top: 0px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

th {
    padding: 20px 15px;
    text-align: center;
    font-weight: 500;
    font-size: 12px;
    color: var(--colorBase);
    text-transform: uppercase;
}

td {
    padding: 15px;
    text-align: center;
    vertical-align: middle;
    font-weight: 300;
    font-size: 12px;
    color: var(--colorBlackText );
    border-bottom: solid 1px rgb(185, 185, 185);
    transition: all 0.3s;
}

tr:hover {
    background-color: rgba(204, 204, 204, 0.541);
}

/* follow me template */
.made-with-love {
    margin-top: 40px;
    padding: 10px;
    clear: left;
    text-align: center;
    font-size: 10px;
    font-family: arial;
    color: var(--colorBase);
}

.made-with-love i {
    font-style: normal;
    color: #F50057;
    font-size: 14px;
    position: relative;
    top: 2px;
}

.made-with-love a {
    color: var(--colorBase);
    text-decoration: none;
}

.made-with-love a:hover {
    text-decoration: underline;
}

.button_table{

    text-decoration: none;
    padding: 10px 15px;
    border-radius: 5px;
    color: white;
    font-size: 12px;

}

.--button_yellow_table{
    background-color: #ffc400;
}

.--button_danger_table{
    background-color: #F50057;
}

/* for custom scrollbar for webkit browser*/

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}