body, html {
    height: 100%;
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    background-color: #ffffff;
}

#loader-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    position: fixed;
    background-color: #ffffff;
}

.spinner {
    border: 3px solid #f3f3f3;
    border-radius: 50%;
    border-top: 3px solid #3498db;
    width: 20px;
    height: 20px;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hidden {
    display: none;
}

#content {
    padding: 20px;
    max-width: 500px;
    text-align: left;
}

h5, h6 {
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 300;
    color: #333;
}

p {
    font-size: 1em;
    margin: 10px 0;
    color: #333;
}

strong {
    font-weight: 600;
}

ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 15px 0;
    color: #333;
}

ul li {
    margin-bottom: 10px;
}

button {
    background-color: #0078d4;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
}

button:hover {
    background-color: #005bb5;
}

/* Mobile formatting */
@media (max-width: 480px) {
    h5, h6 {
        font-size: 1.2em;
    }

    p, ul li, button {
        font-size: 0.9em;
    }

    .spinner {
        width: 50px;
        height: 50px;
    }
}


.ip-info {
    text-align: left;
 }
 .ip-info h5, h6 {
     margin: 0 10px 0 0;
     text-align: left;

 }
 .core-msg {
     font-family: Arial, sans-serif;
     text-align: left;

 }

.hidden-text {
position: absolute; 
left: -9999px;}

