﻿.magic-paragraph {
    padding-top: 10px;
    padding-bottom: 10px;
}

.magic-muddrawer-navMenu {
    min-height: 100vh;
}

.magic-drawer-Open {
    width: 320px !important;
}

.magic-navMenu-wrap {
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 68px;
}

.styled-quote {
    border-left: 4px solid #a259ff;
    padding-left: 1em;
    margin-left: 0;
    padding-top: 5px;
    padding-bottom: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
}

.magic-div {
    margin-top: 40px;
    margin-bottom: 40px;
}

/* 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 */
    }


.markdown-table-container {
    overflow-x: auto;
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #444;
    border-radius: 6px;
}

.markdown-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

    .markdown-table th,
    .markdown-table td {
        border: 1px solid #444;
        padding: 12px 16px;
        text-align: left;
        vertical-align: top;
        background-color: #111;
        color: #eee;
    }

    .markdown-table th {
        background-color: #1c1c1c;
        font-weight: 600;
    }

    .markdown-table code {
        background-color: #1e1e1e;
        padding: 2px 6px;
        border-radius: 4px;
        font-family: Consolas, Monaco, monospace;
        font-size: 0.95em;
        color: #c5c8c6;
    }

a.anchor-invisible-link {
    display: none !important;
}