@import url('https://fonts.googleapis.com/css?family=Audiowide');
.logo {
    margin-top: 10px;
    margin-left: 50px;
    height: 64px;
    width: 64px;
}

.serverlist {
    color: white;
    text-align: center;
}

.container1 {
    margin-bottom: 30px;
    position: relative;
    bottom: -10px; 
    left: 120px; 
    width: calc(100% - 240px); 
    border-bottom: 2px solid white;
}

a {
    color: red;
    text-decoration: none;
}

a:hover {
    color: rgb(145, 37, 37);
}

body {
    font-family: "Audiowide", sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #121212;
}

footer {
    margin-top: auto;
    margin-bottom: 10px;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.link-section {
    margin-bottom: 20px;
}

.contact-content p {
    font-size: 15px;
    margin: 30px 0 60px;
    position: relative;
}

.contact-content p::after {
    background: #353C46;
    bottom: -15px;
    content: "";
    height: 1px;
    left: 50%;
    position: absolute;
    transform: translate(-50%);
    width: 80%;
}

.contact-social {
    margin-top: 30px;
}

.contact-social>ul {
    display: inline-flex;
}

.contact-social ul li a {
    border: 1px solid #8b9199;
    color: #8b9199;
    display: inline-block;
    height: 40px;
    margin: 0 10px;
    padding-top: 7px;
    transition: all 0.4s ease 0s;
    width: 40px;
}

.contact-social ul li a:hover {
    border: 1px solid #fa0202;
    color: #fa0202;
}

.revealButton {
    background-color: transparent;
    border: 0;
    font-size: 24px;
}

.button {
    background-color: #fa0202;
    border: none;
    color: white;
    padding: 16px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    transition-duration: 0.4s;
    cursor: pointer;
}

.button3 {
    background-color: transparent;
    color: white;
    border: 2px solid #f44336;
}

.button3:hover {
    background-color: #f44336;
    color: white;
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
}

.table th,
.table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom-color: #212529;
    color: white;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid rgba(0, 0, 0, 0.06);
}

.table tbody+tbody {
    border-top: 2px solid rgba(0, 0, 0, 0.06);
}

.table .table {
    background-color: #fafafa;
}

.table-sm th,
.table-sm td {
    padding: 0.3rem;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

.table th {
    color: #fafafa;
    background-color: #212529;
    border-color: #32383e;
}

.table th {
    color: #fff;
    background-color: rgba(0, 0, 0, 0);
    border-color: rgba(0, 0, 0, 0.06);
}

*::-webkit-scrollbar {
    width: 10px;
}

*::-webkit-scrollbar-track {
    background: #18191A;
}

*::-webkit-scrollbar-thumb {
    background: #242526;
}

*::-webkit-scrollbar-thumb:hover {
    background: #3A3B3C;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.pagination a {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 4px;
    border: 1px solid #ff0000; 
    text-decoration: none;
    color: white; 
    background-color: rgba(0, 0, 0, 0.5); 
    border-radius: 3px;
}

.pagination a:hover {
    background-color: rgba(0, 0, 0, 0.1); 
}

.pagination .current {
    background-color: #ff0000; 
    color: white;
    border: 1px solid #ff0000; 
}

.back-button {
    display: inline;
    padding: 8px 12px;
    margin: 0 4px;
    border: none;
    text-decoration: none;
    color: white; 
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 3px;
    transition: background-color 0.3s;
    position: relative;
}

.back-button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.back-button {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 4px;
    border: 1px solid #ff0000;
    text-decoration: none;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 3px;
    transition: background-color 0.3s, color 0.3s;
}

.back-button:hover {
    background-color: rgba(0, 0, 0, 0.1);
    color: #ff0000;
}

.success-message {
	display: none;
    position: fixed;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.3s ease-in-out;
    z-index: 9999;
}
