body {
    background-color: #f8f9fa;
}

.container {
    max-width: 800px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    font-weight: bold;
    margin-bottom: 20px;
}

.title {
    color: orange;
}


/*.container {*/
/*    display: grid;*/
/*    grid-template-columns: 1fr 1fr;*/
/*    gap: 20px;*/
/*    align-items: start;*/
/*    justify-content: center;*/
/*    margin-top: 20px;*/
/*}*/

.profile-details {
    text-align: justify;
    /*align-items: center;*/
    /*justify-content: center;*/
    padding: 10px;
    background-color: #cccccc;
    border-radius: 8px;
}

.ip-addresses {
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: #cccccc;
    border-radius: 8px;
}

.ip-address {
    text-align: center;
    padding: 10px;
    border-radius: 8px;
}

.ip-addresses p {
    font-size: 1.2em;
    margin-top: 10px;
}

.badge {

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px; /* Adjust font size if needed */
    padding: 3px; /* Remove padding to prevent size conflicts */
    border-radius: 4px;
    margin-left: 8px;
    color: white;
}

.success {
    background-color: #198754;
    color: white;
}

.warning {
    background-color: #ffc107;
    color: black;
}

.danger {
    background-color: #dc3545;
    color: white;
}

.info {
    background-color: #0dcaf0;
}

.primary {
    background-color: #0d6efd;
}

.secondary {
    background-color: #ced4da;
    color: black;
}

.eduvpn-dev {
    background-color: #20c997;
    color: black;
}

#status-explanation {
    padding: 10px;
    background-color: #cccccc;
    border-radius: 8px;
    display: flex; /* Use flexbox for centering */
    flex-direction: column; /* Stack elements vertically */
    justify-content: center; /* Center vertically */
    align-items: center; /* Center horizontally */
    text-align: center;
}

#status-explanation h2 {
    margin-top: 0;
    align-content: center;
    align-items: center;
}

#status-explanation ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#status-explanation li {
    align-items: center;
    margin: 8px 0;
}

pre {
    border-radius: 0.25rem;
    padding: 1rem;
    position: relative;
    background-color: #f8f9fa;
}

.pre-large {
    font-size: large;
    font-weight: bold;
}

.code-block-empty {
    background-color: #c7c7c7;
}
.code-block-success {
    background-color: #e6fadc;
}
.code-block-error {
    background-color: #f8d7da;
}
.copy-btn {
    position: absolute;
    top: 0;
    right: 0;
}
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

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

.hidden {
    display: none;
}