﻿.magic-paragraph {
    padding-top: 10px;
    padding-bottom: 10px;
}
.magic-muddrawer-navMenu {
    min-height: 100vh;
}

.magic-navMenu-wrap {
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 68px;
}

/* Fullscreen popup overlay */
#disconnect-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Black background with opacity */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 100000 !important; /* Ensure it's above everything */
    visibility: hidden;
}

/* Popup content */
#disconnect-popup-content {
    text-align: center;
    color: white;
    background-color: #333;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Refresh button style */
#refresh-button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007BFF;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

    #refresh-button:hover {
        background-color: #0056b3;
    }

/* Image div styling */
#disconnect-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    width: 100%;
    height: auto; /* Ensure the image resizes with the screen */
}

/* Ensure the image is hidden by default */
#disconnect-image {
    display: none;
    max-width: 100%;
    height: auto;
}

.magic-paragraph ul {
    list-style-type: disc; /* Adds bullet points */
    padding-left: 1.5rem; /* Indents the list for better readability */
    margin: 1rem 0; /* Adds spacing above and below the list */
}

.magic-paragraph ul li {
    margin-bottom: 0.5rem; /* Adds spacing between each list item */
}