body, .modal-content {
    background-color: rgb(16, 16, 16);
    color: rgba(255, 255, 255, 0.5);

    font-family: "Geist Mono";
    font-weight: 600;
}

header {
    border-top: solid 1px #2c2c2c;
    border-bottom: solid 1px #2c2c2c;
}

header span {
    color: rgba(255, 255, 255, 0.5);
    margin-top: 7px;
    margin-left: 10px;
}

.container {
    max-width: 960px;
}


.app-content {
    border-bottom: solid 1px #2c2c2c;
}

.app-content .container {
    padding: 0;
    border-left: solid 1px #2c2c2c;
    border-right: solid 1px #2c2c2c;
}

.app-content .container main {
    padding-top: 2.4rem;
    padding-left: 2.4rem;
    padding-right: 2.4rem;
    padding-bottom: 2.6rem;
}

h1, h2, h3, h4, h5, h6 {
    color: #ffffff;
    font-family: "Inter";
    font-weight: 600;
}

h2 {
    font-size: 2.5rem;
}


.app-content .app-custom-main {
    padding-top: 6rem !important;
}

.app-content table th,
.app-content table td {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;

    border: solid 1px #2c2c2c;
    background-color: transparent;
    color: rgba(255, 255, 255, 0.5);
}

.app-content table th {
    color: #ffffff;
}

.app-content th:first-child, .app-content td:first-child {
    min-width: 100%;
    border-left: none;
}

.app-content th:last-child, .app-content td:last-child {
    border-right: none;
}
.app-content td:first-child {
    color: #ffffff;
}
.app-content td:first-child:hover {
    color: #ffffff;
    cursor: pointer;

    text-decoration: underline;
}
.app-content td:last-child {
    color: #ffffff;
    cursor: pointer;
    
    text-decoration: underline;
}
footer div {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.modal-content {
    border: solid 1px #2c2c2c;
    border-radius: 0;
    padding: 1rem;
}
.modal-header {
    border-bottom: none;
}
.modal-footer {
    border-top: none;
}
.modal-content .modal-description {
    margin-top: -24px;
    padding-bottom: 2rem;
}
.modal-content table td {
    border: none;
    background-color: transparent;
    color: rgba(255, 255, 255, 0.5);
}
.modal-content table td:last-child {
    color: #ffffff;
}
#app-loading {
    position: fixed;
    inset: 0;
    background: rgba(16, 16, 16, 0.8);
    backdrop-filter: blur(2px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.custom-input {
    background: transparent !important;
    border: 1px solid #2c2c2c !important;
    border-radius: 0 !important;
    color: #ffffff;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    padding-left: 1rem;
    padding-right: 1rem;
}
.custom-input:focus {
    border-color: #ffffff !important;
    box-shadow: none !important;
    color: #ffffff;
}
.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.5);
}
.btn-danger {
    background-color: rgb(236, 1, 1) !important;
    border-color: rgb(200, 0, 0) !important;
    border-radius: 0 !important;
}
.btn-danger:hover {
    background-color: rgb(210, 0, 0) !important;
    border-color: rgb(180, 0, 0) !important;
}
.btn-danger:active,
.btn-danger:focus {
    background-color: rgb(190, 0, 0) !important;
    border-color: rgb(160, 0, 0) !important;
    box-shadow: none !important;
}
.btn-light {
    border-radius: 0 !important;
}
.btn-light:focus, 
.btn-light:active {
    box-shadow: none !important;
}
.login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.login-box {
    border: 1px solid #2c2c2c;
    padding: 40px;
    width: 100%;
    max-width: 420px;
    border-radius: 0;
}

.btn-login {
    border-radius: 0;
    background: white;
    color: black;
    padding: 8px;
    width: 100%;
}

.login-title {
    font-weight: 600;
    margin-bottom: 20px;
}

#requestModal pre {
    margin-top: -2rem;
    font-size: 1rem;
    font-family: "Geist Mono";
}

.alert-danger {
    background-color: rgb(210, 0, 0) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 0 !important;
}

.alert-primary {
    background-color: #ffffff !important;
    color: #000000 !important;
    border: none !important;
    border-radius: 0 !important;
}

@media (max-width: 991.98px) {
    .app-content {
        border: none;
    }
    header, footer {
        display: none;
    }
}