/* _content/x_pro_au/Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-ho5xy9bii0] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-ho5xy9bii0] {
    flex: 1;
}

.sidebar[b-ho5xy9bii0] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-ho5xy9bii0] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-ho5xy9bii0]  a, .top-row[b-ho5xy9bii0]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-ho5xy9bii0]  a:hover, .top-row[b-ho5xy9bii0]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-ho5xy9bii0]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-ho5xy9bii0] {
        justify-content: space-between;
    }

    .top-row[b-ho5xy9bii0]  a, .top-row[b-ho5xy9bii0]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-ho5xy9bii0] {
        flex-direction: row;
    }

    .sidebar[b-ho5xy9bii0] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-ho5xy9bii0] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-ho5xy9bii0]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-ho5xy9bii0], article[b-ho5xy9bii0] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-ho5xy9bii0] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-ho5xy9bii0] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/x_pro_au/Components/Pages/Admin/Mail/WebMail/WebMail2.razor.rz.scp.css */

button[b-4drchn8by6] {
    padding: 2px;
    margin: 2px;
}

/* Styles for the entire table */
#tblMessages table[b-4drchn8by6] {
    border: solid 1px black;
    border-collapse: collapse; /* Ensures borders don't double */
    width: 100%; /* Makes the table span the full width of the container */
    margin: 10px 0; /* Adds spacing around the table */
}

/* Styles for the table headers */
#tblMessages th[b-4drchn8by6] {
    background-color: lightgray;
    text-align: center; /* Centers the text in headers */
    padding: 8px; /* Increases padding for better spacing */
    border: solid 1px black; /* Adds a border around each header cell */
}

/* Styles for table rows */
#tblMessages tr[b-4drchn8by6] {
    background-color: rgb(220,220,220);
    border: solid 1px black; /* Adds a border around each row */
}

    /* Alternating row color */
    #tblMessages tr:nth-child(4n-3)[b-4drchn8by6] {
        background-color: rgb(240,240,240)
    }

/* Styles for table data cells */
#tblMessages td[b-4drchn8by6] {
    padding: 8px; /* Matches header padding for consistency */
    text-align: left; /* Aligns text to the left for better readability */
    border: solid 1px black; /* Adds a border around each cell */
    vertical-align: top;
}
/* Styling for the folder container */
.folder[b-4drchn8by6] {
    margin-bottom: 10px; /* Add spacing between folders */
}

/* Folder buttons */
.folder-button[b-4drchn8by6] {
    display: inline-block;
    margin: 5px 0; /* Spacing above and below buttons */
    padding: 10px 15px; /* Adjust padding for better click area */
    font-weight: bold; /* Make folder names stand out */
    text-align: left; /* Align text to the left */
    width: 100%; /* Optional: Full-width buttons for better alignment */
    cursor: pointer;
    border-radius: 5px; /* Rounded corners */
}

/* Subfolder list */
.subfolder-list[b-4drchn8by6] {
    margin-left: 20px; /* Indent subfolders */
    border-left: 2px solid #ccc; /* Optional: Add a line to indicate hierarchy */
    padding-left: 10px; /* Space between border and content */
}

/* Subfolder buttons */
.subfolder-button[b-4drchn8by6] {
    display: inline-block;
    margin: 5px 0; /* Consistent spacing */
    padding: 8px 12px; /* Smaller padding for subfolder buttons */
    text-align: left;
    cursor: pointer;
    border-radius: 5px;
}

    /* Hover effects for buttons */
    .folder-button:hover[b-4drchn8by6], .subfolder-button:hover[b-4drchn8by6] {
        background-color: #e9ecef; /* Light gray background on hover */
        color: #000; /* Ensure text remains visible */
    }

/* Optional: Add a slight shadow to buttons */
.folder-button[b-4drchn8by6], .subfolder-button[b-4drchn8by6] {
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}

    /* Optional: Highlight the folder or subfolder being clicked */
    .folder-button:active[b-4drchn8by6], .subfolder-button:active[b-4drchn8by6] {
        background-color: #d6d8db; /* Darker gray */
        box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.2); /* Inset shadow for "pressed" look */
    }

/* _content/x_pro_au/Components/Pages/Contact.razor.rz.scp.css */
#container[b-zxe5x9rj59] {
    max-width: 600px;
    margin: 0 auto; /* Center the form on the page */
    padding: 2rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h3[b-zxe5x9rj59] {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: #333;
}

.form-group[b-zxe5x9rj59] {
    margin-bottom: 1.5rem;
}

label[b-zxe5x9rj59] {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #555;
}

.form-control[b-zxe5x9rj59] {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

    .form-control:focus[b-zxe5x9rj59] {
        border-color: #007bff;
        outline: none;
        box-shadow: 0 0 4px rgba(0, 123, 255, 0.25);
    }

button[b-zxe5x9rj59] {
    display: block;
    width: 100%;
    padding: 0.75rem;
    background-color: #007bff;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

    button:hover[b-zxe5x9rj59] {
        background-color: #0056b3;
    }

@media (max-width: 480px) {
    #container[b-zxe5x9rj59] {
        padding: 1rem;
    }

    h3[b-zxe5x9rj59] {
        font-size: 1.5rem;
    }
}
/* _content/x_pro_au/Components/Pages/Home.razor.rz.scp.css */


h1[b-2qfydj5vn1], h2[b-2qfydj5vn1], h3[b-2qfydj5vn1], h4[b-2qfydj5vn1], h5[b-2qfydj5vn1], h6[b-2qfydj5vn1] {
    text-align: center;
}

.bg1[b-2qfydj5vn1], .bg2[b-2qfydj5vn1], .bg3[b-2qfydj5vn1] {
    padding: 1rem;
    margin: 1rem;
    border: solid 1px black;
    border-radius: 5px;
}

.bg1[b-2qfydj5vn1] {
    background-color: rgb(200, 200, 200);
}

.bg2[b-2qfydj5vn1] {
    background-color: rgb(180, 180, 180);
}

.bg3[b-2qfydj5vn1] {
    background-color: rgb(160, 160, 160);
}

h5[b-2qfydj5vn1] {
    text-align: center;
    padding-top: 3rem;
}

.row[b-2qfydj5vn1] {
    display: flex;
    flex-wrap: wrap;
}

.col[b-2qfydj5vn1] {
    flex: 1 1 calc(33.33% - 2rem); /* 3 columns */
    margin: 1rem;
}

img.spacer[b-2qfydj5vn1] {
  
    max-width: 100%;
    height: auto;
    max-height: 400px; /* Add a maximum height */
    display: block;
    margin: 0 auto; /* Center the image */
    border-radius:5px;
  float:right;
}


@media (max-width: 768px) {
    .col[b-2qfydj5vn1] {
        flex: 1 1 calc(50% - 2rem); /* 2 columns for tablets */
    }

    h5[b-2qfydj5vn1] {
        padding-top: 1rem;
    }
    img[b-2qfydj5vn1] {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .col[b-2qfydj5vn1] {
        flex: 1 1 100%; /* 1 column for mobile */
    }

    h1[b-2qfydj5vn1], h4[b-2qfydj5vn1] {
        font-size: 1.5rem; /* Adjust font sizes for smaller screens */

    }
    img[b-2qfydj5vn1] {
        max-height: 200px;
    }
}

/* _content/x_pro_au/Components/Pages/Staff_Hub/Xpro_Install_Auth_Key.razor.rz.scp.css */
.copied-message[b-ayf4npp6jv] {
    animation: fadeOut 1s forwards;
    color: green;
    font-weight: bold;
    margin-left: 10px;
}

@@keyframes fadeOut {
    from[b-ayf4npp6jv] {
        opacity: 1;
    }

    to[b-ayf4npp6jv] {
        opacity: 0;
    }
}
