/* _content/CMSite/Components/CrudModal.razor.rz.scp.css */
.modal-dialog.modal-fullscreen[b-zxk24kckle] {
    width: 100%;
    height: 100vh; /* force full viewport height */
    margin: 0;
    padding: 0;
}

.modal-content[b-zxk24kckle] {
    display: flex;
    flex-direction: column;
    height: 100%; /* fill parent */
    min-height: 0; /* allow flex shrinking */
}

.modal-body[b-zxk24kckle] {
    flex: 1 1 auto; /* take remaining space */
    min-height: 0; /* allow flex shrink for scrolling */
    overflow-y: auto;
    overflow-x: hidden;
}

    /* Prevent horizontal overflow of inner content */
    .modal-body .modal-inner-content[b-zxk24kckle] {
        min-width: 0;
    }

    /* Optional: style scrollbar */
    .modal-body[b-zxk24kckle]::-webkit-scrollbar {
        width: 8px;
    }

    .modal-body[b-zxk24kckle]::-webkit-scrollbar-thumb {
        background-color: rgba(0,0,0,0.3);
        border-radius: 4px;
    }
/* _content/CMSite/Components/Upload/UploadControl.razor.rz.scp.css */
.upload-control[b-xrq0ffmnhy] {
  background: var(--bg);
  border-radius: var(--br);
  padding: 10px;
  border: 1px solid var(--border);
  margin-bottom: 10px;
  width: 100%;
}
.upload-control .validation-message[b-xrq0ffmnhy] {
  white-space: nowrap;
  margin: auto;
  margin-top: 10px;
}
.upload-control .button[b-xrq0ffmnhy] {
  margin-left: 0;
}
.upload-control .file-preview[b-xrq0ffmnhy] {
  margin-top: 10px;
}
.upload-control .file-preview .message[b-xrq0ffmnhy] {
  font-size: 12px;
  margin-top: 10px;
}
.upload-control .file-preview .subtitle[b-xrq0ffmnhy] {
  border-bottom: none;
  margin-bottom: 0;
}
.upload-control .file-preview .individual-file[b-xrq0ffmnhy] {
  display: flex;
  border-radius: var(--br);
  font-weight: 600;
  align-items: center;
}
.upload-control .file-preview .individual-file .image[b-xrq0ffmnhy] {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--br);
  margin-right: 10px;
}
.upload-control .file-preview .individual-file .filename[b-xrq0ffmnhy] {
  flex-grow: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: 600;
}
.upload-control .file-preview .individual-file .button[b-xrq0ffmnhy] {
  align-self: center;
}
/* _content/CMSite/Pages/Accountancy/Invoices/CompleteRequest.razor.rz.scp.css */
/* ================================
   INVOICE DETAILS LAYOUT
   ================================ */
.invoice-details[b-7wc4oz8x1w] {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0.5rem 1rem;
    margin-bottom: 2rem;
}

.detail-row[b-7wc4oz8x1w] {
    display: contents;
}

    .detail-row label[b-7wc4oz8x1w] {
        font-weight: 600;
        color: #555;
    }

    .detail-row p[b-7wc4oz8x1w] {
        margin: 0;
        color: #333;
    }

/* Mobile: stack labels above values */
@media (max-width: 768px) {
    .invoice-details[b-7wc4oz8x1w] {
        grid-template-columns: 1fr;
    }

    .detail-row[b-7wc4oz8x1w] {
        display: block;
        margin-bottom: 0.75rem;
    }
}



/* ================================
   FORM SUBMIT BUTTON
   ================================ */
.form-submit[b-7wc4oz8x1w] {
    text-align: center;
    margin-top: 2rem;
}

.btn-primary[b-7wc4oz8x1w] {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    border-radius: 0.5rem;
    background: #28a745;
    border: none;
    color: white;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

    .btn-primary:hover[b-7wc4oz8x1w] {
        background: #218838;
        transform: scale(1.03);
    }
/* _content/CMSite/Pages/Accountancy/Invoices/Components/FindEventForAccount.razor.rz.scp.css */
.event-item[b-pd524i3el2] {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    width: auto; /* prevent forced shrinking */
    white-space: normal; /* allow wrapping instead of truncating */
}

.event-details[b-pd524i3el2] {
    flex: 1; /* take up remaining space */
    min-width: 0; /* allow wrapping inside */
}
/* _content/CMSite/Pages/Accountancy/Invoices/Components/FindEventForCompany.razor.rz.scp.css */
.event-card[b-gro44sz525] {
    margin: 1.5rem 0;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background: white;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.event-card-header[b-gro44sz525] {
    padding: 1rem;
    border-bottom: 1px solid #ddd;
}

    .event-card-header h3[b-gro44sz525] {
        margin: 0 0 0.5rem 0;
        font-size: 1.2rem;
    }

.event-search[b-gro44sz525] {
    width: 100%;
    padding: 0.5rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 0.95rem;
}

.event-list[b-gro44sz525] {
    max-height: 400px; /* About 10 items depending on padding */
    overflow-y: auto;
    padding: 0.5rem;
}

.event-item[b-gro44sz525] {
    display: flex;
    align-items: center;
    background: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    transition: background 0.2s ease-in-out;
}

    .event-item:hover[b-gro44sz525] {
        background: #f1f1f1;
    }

.event-checkbox[b-gro44sz525] {
    margin-right: 1rem;
}

.event-details[b-gro44sz525] {
    display: flex;
    flex-direction: column;
}

.event-description[b-gro44sz525] {
    font-weight: bold;
    font-size: 1rem;
}

.event-date[b-gro44sz525] {
    font-size: 0.9rem;
    color: #666;
}

.no-events[b-gro44sz525] {
    text-align: center;
    color: #999;
    padding: 1rem;
}
/* _content/CMSite/Pages/Accountancy/Invoices/Components/InvoiceUploadOnly.razor.rz.scp.css */
/* ================================
   ACTION BUTTONS (Generate / Upload)
   ================================ */
.action-buttons[b-qn3z67j15g] {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-choice[b-qn3z67j15g] {
    flex: 1;
    padding: 1rem;
    font-size: 1.1rem;
    text-align: center;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
}

    .btn-choice:hover[b-qn3z67j15g] {
        transform: scale(1.03);
        background: linear-gradient(135deg, #0056b3, #003f7f);
    }
/* _content/CMSite/Pages/Accountancy/Invoices/Components/Preview.razor.rz.scp.css */
/* ================================
   INVOICE PREVIEW
   ================================ */
.invoice-preview[b-6r850gzshk] {
    display: flex;
    flex-direction: column;
    align-items: center; /* centers both image & button */
    gap: 0.75rem;
    margin: 1rem 0 2rem 0;
}

    .invoice-preview img[b-6r850gzshk] {
        max-width: 100%;
        height: auto;
        border-radius: 0.5rem;
        box-shadow: 0 0 10px rgba(0,0,0,0.15);
    }

    /* Make the download button visually connected to the image */
    .invoice-preview .btn-secondary[b-6r850gzshk] {
        padding: 0.6rem 1.5rem;
        font-size: 1rem;
        border-radius: 0.5rem;
        background: #6c757d;
        border: none;
        color: white;
        cursor: pointer;
        transition: background 0.3s, transform 0.2s;
    }

        .invoice-preview .btn-secondary:hover[b-6r850gzshk] {
            background: #5a6268;
            transform: scale(1.03);
        }
/* _content/CMSite/Pages/Accountancy/Invoices/Components/PurchaseInvoiceUpload.razor.rz.scp.css */
/* ================================
   ACTION BUTTONS (Generate / Upload)
   ================================ */
.action-buttons[b-ymnnut8gbu] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-choice[b-ymnnut8gbu] {
    flex: 1;
    padding: 1rem;
    font-size: 1.1rem;
    text-align: center;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
}

    .btn-choice:hover[b-ymnnut8gbu] {
        transform: scale(1.03);
        background: linear-gradient(135deg, #0056b3, #003f7f);
    }
/* _content/CMSite/Pages/Accountancy/Invoices/Components/SalesInvoiceUpload.razor.rz.scp.css */
/* ================================
   ACTION BUTTONS (Generate / Upload)
   ================================ */
.action-buttons[b-qsdss6gu38] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-choice[b-qsdss6gu38] {
    flex: 1;
    padding: 1rem;
    font-size: 1.1rem;
    text-align: center;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
}

    .btn-choice:hover[b-qsdss6gu38] {
        transform: scale(1.03);
        background: linear-gradient(135deg, #0056b3, #003f7f);
    }
/* _content/CMSite/Pages/Accountancy/Invoices/Invoices.razor.rz.scp.css */
.Invoice-list[b-zm9e2bc74n]
{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.Invoice-item[b-zm9e2bc74n] {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 5px;
}

    .Invoice-item div[b-zm9e2bc74n] {
        margin-bottom: 0.5rem;
    }

.Invoice-actions[b-zm9e2bc74n] {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.Invoice-totals[b-zm9e2bc74n] {
    margin-top: 1.5rem;
    font-weight: bold;
    padding: 1rem;
    background-color: lightgray;
    border-top: 2px solid black;
}

@media (min-width: 768px) {
    .Invoice-item[b-zm9e2bc74n] {
        flex-direction: row;
        justify-content: space-between;
    }

        .Invoice-item div[b-zm9e2bc74n] {
            flex: 1;
            margin-bottom: 0;
        }

    .Invoice-actions[b-zm9e2bc74n] {
        justify-content: flex-end;
    }
}
/* _content/CMSite/Pages/Accountancy/Invoices/RequestedInvoices.razor.rz.scp.css */
.Invoice-list[b-yi5guwkw3m] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.Invoice-item[b-yi5guwkw3m] {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 5px;
}

    .Invoice-item div[b-yi5guwkw3m] {
        margin-bottom: 0.5rem;
    }

.Invoice-actions[b-yi5guwkw3m] {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.Invoice-totals[b-yi5guwkw3m] {
    margin-top: 1.5rem;
    font-weight: bold;
    padding: 1rem;
    background-color: lightgray;
    border-top: 2px solid black;
}

@media (min-width: 768px) {
    .Invoice-item[b-yi5guwkw3m] {
        flex-direction: row;
        justify-content: space-between;
    }

        .Invoice-item div[b-yi5guwkw3m] {
            flex: 1;
            margin-bottom: 0;
        }

    .Invoice-actions[b-yi5guwkw3m] {
        justify-content: flex-end;
    }
}
/* _content/CMSite/Pages/Accountancy/Workbook/Jobs.razor.rz.scp.css */
.event-list[b-aufcrkkecd] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.event-card[b-aufcrkkecd] {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(33.333% - 1rem);
    min-width: 300px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
}

    .event-card:hover[b-aufcrkkecd] {
        transform: scale(1.03);
        box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2);
    }

.event-header[b-aufcrkkecd] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-list[b-aufcrkkecd] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.status-item[b-aufcrkkecd] {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.9rem;
    font-weight: bold;
}

.info[b-aufcrkkecd] {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 1rem;
    font-weight: bold;
    margin: 0.3rem 0;
}

.event-reconciled[b-aufcrkkecd] {
    background-color: lightgreen;
}

.event-query[b-aufcrkkecd] {
    background-color: lightcoral;
}

@media (max-width: 768px) {
    .event-card[b-aufcrkkecd] {
        flex: 1 1 100%;
    }
}
/* _content/CMSite/Pages/Gigs/EventEdit/EventInvoices.razor.rz.scp.css */
.Invoice-list[b-ct7w1sceb6] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.Invoice-item[b-ct7w1sceb6] {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 5px;
}

    .Invoice-item div[b-ct7w1sceb6] {
        margin-bottom: 0.5rem;
    }

.Invoice-actions[b-ct7w1sceb6] {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.Invoice-totals[b-ct7w1sceb6] {
    margin-top: 1.5rem;
    font-weight: bold;
    padding: 1rem;
    background-color: lightgray;
    border-top: 2px solid black;
}

@media (min-width: 768px) {
    .Invoice-item[b-ct7w1sceb6] {
        flex-direction: row;
        justify-content: space-between;
    }

        .Invoice-item div[b-ct7w1sceb6] {
            flex: 1;
            margin-bottom: 0;
        }

    .Invoice-actions[b-ct7w1sceb6] {
        justify-content: flex-end;
    }
}
/* _content/CMSite/Pages/Gigs/EventView/MemberView.razor.rz.scp.css */
.event-title[b-p9wo6axb2s] {
    font-size: 2.0rem;
}

.event-datetime[b-p9wo6axb2s] {
    font-size: 1.5rem;
    margin-top: 0.5rem;
    color: #333;
}
/* _content/CMSite/Pages/HomePage/AccountStatus.razor.rz.scp.css */
.status-box[b-k95us6kk1o] {
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: bold;
    color: white;
    display: inline-block;
    white-space: nowrap;
    font-size: 14px;
}

.event-status-green[b-k95us6kk1o] {
    background-color: green;
}

.event-status-orange[b-k95us6kk1o] {
    background-color: orange;
}

.event-status-blue[b-k95us6kk1o] {
    background-color: blue;
}

.event-status-red[b-k95us6kk1o] {
    background-color: red;
}

.event-status-purple[b-k95us6kk1o] {
    background-color: purple;
}

.event-status-gray[b-k95us6kk1o] {
    background-color: gray;
}

.event-status-darkblue[b-k95us6kk1o] {
    background-color: darkblue;
}

.event-status-black[b-k95us6kk1o] {
    background-color: black;
}
/* _content/CMSite/Pages/HomePage/ActionMenu.razor.rz.scp.css */
.action-dropdown[b-2kurvvr878] {
    position: relative; /* This makes dropdown-content position relative to this container */
    display: inline-block; /* Shrink-wrap the button and dropdown */
}

.dropdown-button[b-2kurvvr878] {
    background-color: #007bff;
    color: white;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
}

.dropdown-content[b-2kurvvr878] {
    display: none;
    position: absolute;
    top: 100%; /* Show dropdown directly below the button */
    right: 0; /* Align dropdown’s right edge with button’s right edge */
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    left: auto; /* Clear any left positioning */
}

.action-dropdown:hover .dropdown-content[b-2kurvvr878] {
    display: block;
}

.dropdown-content a[b-2kurvvr878] {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

    .dropdown-content a:hover[b-2kurvvr878] {
        background-color: #f1f1f1;
    }
/* _content/CMSite/Pages/HomePage/CalendarDate.razor.rz.scp.css */
.event-date[b-sllou1wv37] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    background-color: #f4f4f4;
    border-radius: 12px;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #555;
    text-align: center;
}

.event-day[b-sllou1wv37] {
    font-size: 24px;
    color: #333;
}

.event-month[b-sllou1wv37] {
    font-size: 20px;
    color: #007bff;
}

.event-year[b-sllou1wv37] {
    font-size: 14px;
    color: #888;
}

/* === Desktop Styles === */
@media (min-width: 768px) {
    .event-date[b-sllou1wv37] {
        flex-direction: row;
        width: auto;
        gap: 12px;
        padding: 10px 16px;
    }
}
/* _content/CMSite/Pages/HomePage/EventStatus.razor.rz.scp.css */
.status-box[b-lv9pjex66w] {
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: bold;
    color: white;
    display: inline-block;
    white-space: nowrap;
    font-size: 14px;
}

.event-status-green[b-lv9pjex66w] {
    background-color: green;
}

.event-status-orange[b-lv9pjex66w] {
    background-color: orange;
}

.event-status-blue[b-lv9pjex66w] {
    background-color: blue;
}

.event-status-red[b-lv9pjex66w] {
    background-color: red;
}

.event-status-purple[b-lv9pjex66w] {
    background-color: purple;
}

.event-status-gray[b-lv9pjex66w] {
    background-color: gray;
}

.event-status-darkblue[b-lv9pjex66w] {
    background-color: darkblue;
}

.event-status-black[b-lv9pjex66w] {
    background-color: black;
}
/* _content/CMSite/Pages/HomePage/EventViewItem.razor.rz.scp.css */
/* === CARD CONTAINER === */
.event-card-style[b-5k0g0a9tkj] {
    background-color: #fff;
    border-radius: 12px;
    padding-bottom: 5px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

/* === ROW LAYOUT === */
.event-card-row[b-5k0g0a9tkj] {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    flex-wrap: nowrap;
    min-width: 0;
}

/* === DATE === */
.event-date-layout[b-5k0g0a9tkj] {
    display: inline-flex;
    text-align: center;
}

/* === DETAILS WRAPPER === */
.event-details-layout[b-5k0g0a9tkj] {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
}

/* === DESCRIPTION BLOCK === */
.description-block-layout[b-5k0g0a9tkj] {
    display: flex;
    flex-direction: column; /* Mobile: stack vertically */
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

/* === EVENT TITLE CONTAINER === */
.event-title-layout[b-5k0g0a9tkj] {
    flex: 0 0 100%; /* Full width on mobile */
}

/* === EVENT TITLE TEXT === */
.event-title-style[b-5k0g0a9tkj] {
    font-size: 14px; /* Smaller font on mobile */
    font-weight: bold;
    white-space: normal; /* Allow wrapping */
    overflow-wrap: break-word;
    word-break: break-word;
}

/* === MEMBERS / STATUS CONTAINER === */
.event-members-status-layout[b-5k0g0a9tkj] {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* === ACTION DROPDOWN (COG) === */
.action-dropdown-layout[b-5k0g0a9tkj] {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
}

/* === DESKTOP BREAKPOINT (768px+) === */
@media (min-width: 768px) {
    .description-block-layout[b-5k0g0a9tkj] {
        flex-direction: row;
        align-items: center;
        gap: 15px;
    }

    .event-title-layout[b-5k0g0a9tkj] {
        flex: 0 0 40%; /* Fixed width on desktop */
        min-width: 0;
    }

    .event-title-style[b-5k0g0a9tkj] {
        font-size: 18px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .event-members-status-layout[b-5k0g0a9tkj] {
        flex: 0 0 40%;
    }
}

.event-status-layout[b-5k0g0a9tkj] {
    display: inline-flex; /* keeps them on one line */
    align-items: center;
    gap: 8px; /* space between each child (adjust as needed) */
}

.event-card-click-area[b-5k0g0a9tkj] {
    display: contents; /* preserves layout flow without adding extra box */
}

/* _content/CMSite/Pages/HomePage/MemberInitials.razor.rz.scp.css */
.initials-wrapper[b-9cd7n9hrxv] {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 5px;
}

.initial-box[b-9cd7n9hrxv] {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    color: white;
    font-weight: bold;
    border-radius: 50%;
    margin-right: 5px;
}

/* High-contrast, distinct colors */
.initial-color-1[b-9cd7n9hrxv] {
    background-color: #f44336; /* Red */
}

.initial-color-2[b-9cd7n9hrxv] {
    background-color: #2196f3; /* Blue */
}

.initial-color-3[b-9cd7n9hrxv] {
    background-color: #4caf50; /* Green */
}

.initial-color-4[b-9cd7n9hrxv] {
    background-color: #ff9800; /* Orange */
}

.initial-color-5[b-9cd7n9hrxv] {
    background-color: #9c27b0; /* Purple */
}

.initial-color-6[b-9cd7n9hrxv] {
    background-color: #00bcd4; /* Cyan */
}

.initial-color-7[b-9cd7n9hrxv] {
    background-color: #8bc34a; /* Light Green */
}

.initial-color-8[b-9cd7n9hrxv] {
    background-color: #ff5722; /* Deep Orange */
}

.initial-color-9[b-9cd7n9hrxv] {
    background-color: #795548; /* Brown */
}

.initial-color-10[b-9cd7n9hrxv] {
    background-color: #607d8b; /* Blue Grey */
}
/* _content/CMSite/Pages/HomePage/UserHome.razor.rz.scp.css */
.event-section[b-whrj5vqeih] {
    border-left: 4px solid #ddd;
    background: #fafafa;
}

.new-events[b-whrj5vqeih] {
    border-color: #0d6efd; /* Bootstrap primary */
}

.confirmed-events[b-whrj5vqeih] {
    border-color: #198754; /* Bootstrap success */
}

.section-title[b-whrj5vqeih] {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
/* _content/CMSite/Pages/Venues/VenuePickOrCreate.razor.rz.scp.css */
.navbar-toggler[b-ysy8m2c73n] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-ysy8m2c73n] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-ysy8m2c73n] {
    font-size: 1.1rem;
}

.oi[b-ysy8m2c73n] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-ysy8m2c73n] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-ysy8m2c73n] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-ysy8m2c73n] {
        padding-bottom: 1rem;
    }

    .nav-item[b-ysy8m2c73n]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-ysy8m2c73n]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-ysy8m2c73n]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-ysy8m2c73n] {
        display: none;
    }

    .collapse[b-ysy8m2c73n] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-ysy8m2c73n] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* _content/CMSite/Shared/Footer.razor.rz.scp.css */
.navbar-toggler[b-r7nh98rw8w] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-r7nh98rw8w] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-r7nh98rw8w] {
    font-size: 1.1rem;
}

.oi[b-r7nh98rw8w] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-r7nh98rw8w] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-r7nh98rw8w] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-r7nh98rw8w] {
        padding-bottom: 1rem;
    }

    .nav-item[b-r7nh98rw8w]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-r7nh98rw8w]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-r7nh98rw8w]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-r7nh98rw8w] {
        display: none;
    }

    .collapse[b-r7nh98rw8w] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-r7nh98rw8w] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* _content/CMSite/Shared/FooterNew.razor.rz.scp.css */
.navbar-toggler[b-1n3g2hwuoi] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-1n3g2hwuoi] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-1n3g2hwuoi] {
    font-size: 1.1rem;
}

.oi[b-1n3g2hwuoi] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-1n3g2hwuoi] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-1n3g2hwuoi] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-1n3g2hwuoi] {
        padding-bottom: 1rem;
    }

    .nav-item[b-1n3g2hwuoi]  a {
        color: #d7d7d7;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
    }

.nav-item[b-1n3g2hwuoi]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-1n3g2hwuoi]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-1n3g2hwuoi] {
        display: none;
    }

    .collapse[b-1n3g2hwuoi] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-1n3g2hwuoi] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* _content/CMSite/Shared/Header.razor.rz.scp.css */
.navbar-toggler[b-9jj4g0zp9x] {
    background-color: rgba(255, 255, 255, 0.1);
}

.top-row[b-9jj4g0zp9x] {
    height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-9jj4g0zp9x] {
    font-size: 1.1rem;
}

.oi[b-9jj4g0zp9x] {
    width: 2rem;
    font-size: 1.1rem;
    vertical-align: text-top;
    top: -2px;
}

.nav-item[b-9jj4g0zp9x] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

.nav-item:first-of-type[b-9jj4g0zp9x] {
    padding-top: 1rem;
}

.nav-item:last-of-type[b-9jj4g0zp9x] {
    padding-bottom: 1rem;
}

.nav-item[b-9jj4g0zp9x]  a {
    color: #d7d7d7;
    border-radius: 4px;
    height: 3rem;
    display: flex;
    align-items: center;
    line-height: 3rem;
}

.nav-item[b-9jj4g0zp9x]  a.active {
    background-color: rgba(255,255,255,0.25);
    color: white;
}

.nav-item[b-9jj4g0zp9x]  a:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

@media (min-width: 641px) {
    .navbar-toggler[b-9jj4g0zp9x] {
        display: none;
    }

    .collapse[b-9jj4g0zp9x] {
        /* Never collapse the sidebar for wide screens */
        display: block;
    }
    
    .nav-scrollable[b-9jj4g0zp9x] {
        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}
/* _content/CMSite/Shared/MainLayout.razor.rz.scp.css */
.page[b-sr1mupj4fj] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-sr1mupj4fj] {
    flex: 1;
}

.sidebar[b-sr1mupj4fj] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-sr1mupj4fj] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-sr1mupj4fj]  a, .top-row .btn-link[b-sr1mupj4fj] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-sr1mupj4fj] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-sr1mupj4fj] {
        display: none;
    }

    .top-row.auth[b-sr1mupj4fj] {
        justify-content: space-between;
    }

    .top-row a[b-sr1mupj4fj], .top-row .btn-link[b-sr1mupj4fj] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-sr1mupj4fj] {
        flex-direction: row;
    }

    .sidebar[b-sr1mupj4fj] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-sr1mupj4fj] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-sr1mupj4fj], article[b-sr1mupj4fj] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* _content/CMSite/Shared/NavMenu.razor.rz.scp.css */
/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
        .navbar[b-sktoefvpl5] {
            padding: 0;
        }

            .navbar ul[b-sktoefvpl5] {
                margin: 0;
                padding: 0;
                display: flex;
                list-style: none;
                align-items: center;
            }

            .navbar li[b-sktoefvpl5] {
                position: relative;
            }

            .navbar a[b-sktoefvpl5],
            .navbar a:focus[b-sktoefvpl5] {
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 15px 0 15px 30px;
                font-family: var(--font-default);
                font-size: 15px;
                font-weight: 500;
                color: rgba(255, 255, 255);
                white-space: nowrap;
                transition: 0.3s;
            }

                .navbar a i[b-sktoefvpl5],
                .navbar a:focus i[b-sktoefvpl5] {
                    font-size: 12px;
                    line-height: 0;
                    margin-left: 5px;
                }

                .navbar a:hover[b-sktoefvpl5],
                .navbar .active[b-sktoefvpl5],
                .navbar .active:focus[b-sktoefvpl5],
                .navbar li:hover > a[b-sktoefvpl5] {
                    color: #fff;
                }

            .navbar .dropdown ul[b-sktoefvpl5] {
                display: block;
                position: absolute;
                left: 14px;
                top: calc(100% + 30px);
                margin: 0;
                padding: 10px 0;
                z-index: 99;
                opacity: 0;
                visibility: hidden;
                background: #fff;
                box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
                transition: 0.2s;
            }

                .navbar .dropdown ul li[b-sktoefvpl5] {
                    min-width: 200px;
                }

                .navbar .dropdown ul a[b-sktoefvpl5] {
                    padding: 10px 20px;
                    font-size: 15px;
                    text-transform: none;
                    color: var(--color-secondary);
                }

                    .navbar .dropdown ul a i[b-sktoefvpl5] {
                        font-size: 12px;
                    }

                    .navbar .dropdown ul a:hover[b-sktoefvpl5],
                    .navbar .dropdown ul .active:hover[b-sktoefvpl5],
                    .navbar .dropdown ul li:hover > a[b-sktoefvpl5] {
                        color: var(--color-primary);
                    }

            .navbar .dropdown:hover > ul[b-sktoefvpl5] {
                opacity: 1;
                top: 100%;
                visibility: visible;
            }

            .navbar .dropdown .dropdown ul[b-sktoefvpl5] {
                top: 0;
                left: calc(100% - 30px);
                visibility: hidden;
            }

            .navbar .dropdown .dropdown:hover > ul[b-sktoefvpl5] {
                opacity: 1;
                top: 0;
                left: 100%;
                visibility: visible;
            }
    }

    @media (min-width: 1280px) and (max-width: 1366px) {
        .navbar .dropdown .dropdown ul[b-sktoefvpl5] {
            left: -90%;
        }

        .navbar .dropdown .dropdown:hover > ul[b-sktoefvpl5] {
            left: -100%;
        }
    }

    @media (min-width: 1280px) {

        .mobile-nav-show[b-sktoefvpl5],
        .mobile-nav-hide[b-sktoefvpl5] {
            display: none;
        }
    }
/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
        .navbar[b-sktoefvpl5] {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 400px;
            bottom: 0;
            transition: 0.3s;
            z-index: 9997;
        }

            .navbar ul[b-sktoefvpl5] {
                position: absolute;
                inset: 0;
                padding: 50px 0 10px 0;
                margin: 0;
                background: rgba(27, 47, 69, 0.9);
                overflow-y: auto;
                transition: 0.3s;
                z-index: 9998;
            }

            .navbar a[b-sktoefvpl5],
            .navbar a:focus[b-sktoefvpl5] {
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 10px 20px;
                font-family: var(--font-default);
                font-size: 15px;
                font-weight: 600;
                color: rgba(255, 255, 255, 0.7);
                white-space: nowrap;
                transition: 0.3s;
            }

                .navbar a i[b-sktoefvpl5],
                .navbar a:focus i[b-sktoefvpl5] {
                    font-size: 12px;
                    line-height: 0;
                    margin-left: 5px;
                }

                .navbar a:hover[b-sktoefvpl5],
                .navbar .active[b-sktoefvpl5],
                .navbar .active:focus[b-sktoefvpl5],
                .navbar li:hover > a[b-sktoefvpl5] {
                    color: #fff;
                }

            .navbar .dropdown ul[b-sktoefvpl5],
            .navbar .dropdown .dropdown ul[b-sktoefvpl5] {
                position: static;
                display: none;
                padding: 10px 0;
                margin: 10px 20px;
                background-color: rgba(20, 35, 51, 0.6);
            }

            .navbar .dropdown > .dropdown-active[b-sktoefvpl5],
            .navbar .dropdown .dropdown > .dropdown-active[b-sktoefvpl5] {
                display: block;
            }

        .mobile-nav-show[b-sktoefvpl5] {
            color: rgba(255, 255, 255, 0.9);
            font-size: 28px;
            cursor: pointer;
            line-height: 0;
            transition: 0.5s;
        }

        .mobile-nav-hide[b-sktoefvpl5] {
            color: rgba(255, 255, 255, 0.9);
            font-size: 32px;
            cursor: pointer;
            line-height: 0;
            transition: 0.5s;
            position: fixed;
            right: 15px;
            top: 15px;
            z-index: 9999;
        }

        .mobile-nav-active[b-sktoefvpl5] {
            overflow: hidden;
        }

            .mobile-nav-active .navbar[b-sktoefvpl5] {
                right: 0;
            }

                .mobile-nav-active .navbar[b-sktoefvpl5]:before {
                    content: "";
                    position: fixed;
                    inset: 0;
                    background: rgba(27, 47, 69, 0.7);
                    z-index: 9996;
                }
    }



/* Flexbox to align text, icon, and chevron */
.navbar-brand.dropdown-toggle[b-sktoefvpl5] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.5rem 1rem;
    padding-left: 0px !important;
    padding-right: 0px !important; /* Remove excess right padding */
}

.navbar-brand i.bi-chevron-down[b-sktoefvpl5] {
    margin-left: 10px !important; /* Space between "Admin" and chevron */
    margin-right: 10px !important; /* Space between chevron and cog icon */
}

/* Ensure the cog icon aligns properly with other icons */
.navbar-brand i.fa-cog[b-sktoefvpl5] {
    margin-right: 0 !important; /* Adjust the right margin to ensure no extra space */
}

/* Dropdown menu adjustments */
.dropdown-menu[b-sktoefvpl5] {
    background: rgba(27, 47, 69, 0.7);
    top: 100%; /* Ensures dropdown is directly below the Admin link */
    right: 0;
    width: max-content;
    color: white !important;
}

.dropdown-item[b-sktoefvpl5] {
    color: white !important;
}

/* Dropdown menu item styling */
.menu-item[b-sktoefvpl5] {
    color: rgba(255, 255, 255);
    text-align: left; /* Align text to the left for desktop */
    white-space: nowrap; /* Prevent text wrapping */
    padding: 10px 20px; /* Increase padding for desktop */
}

    /* Adjust padding for icons */
    .menu-item i[b-sktoefvpl5] {
        margin-right: 10px; /* Add margin to the right of icons */
    }

    /* Dropdown item hover effect */
    .menu-item:hover[b-sktoefvpl5] {
        color: #fff;
        background-color: rgba(255, 255, 255, 0.1);
    }

/* Chevron and dropdown adjustments for mobile */
@media (max-width: 1279px) {
    .navbar-brand.dropdown-toggle[b-sktoefvpl5] {
        justify-content: flex-end;
        padding-right: 10px; /* Adjust spacing */
    }

    .bi-chevron-down[b-sktoefvpl5] {
        margin-right: 0 !important; /* Ensure the chevron is closer to the edge */
    }

    .dropdown-menu[b-sktoefvpl5] {
        right: 0;
        width: 100%; /* Full width on mobile */
        background-color: rgba(27, 47, 69, 0.7);
    }
    /* Adjust text alignment and padding for mobile */
    .menu-item[b-sktoefvpl5] {
        text-align: right; /* Align text to the right for mobile */
        padding: 10px; /* Adjust padding for mobile */
    }
}

/* Hide icons by default on larger screens */
.mobile-icon[b-sktoefvpl5] {
    display: none;
    margin-right: 5px; /* Reduced spacing between icon and text */
}

/* Show icons only on mobile */
@media (max-width: 1279px) {
    .mobile-icon[b-sktoefvpl5] {
        display: inline-block;
        margin-right: 10px;
    }
}

/* Properly align the dropdown menu under Admin */
.dropdown-menu-right[b-sktoefvpl5] {
    position: absolute;
    top: 100%; /* Place dropdown just below Admin link */
    right: 0;
    width: auto;
}

/* Adjust dropdown width on mobile */
@media (max-width: 1279px) {
    .dropdown-menu-right[b-sktoefvpl5] {
        right: 0;
        width: 100%;
    }
}

.dropdown[b-sktoefvpl5] {
    position: relative;
}

/* Fix padding for the cog icon */
.menu-item i[b-sktoefvpl5] {
    margin-left: 10px; /* Add left margin to align all icons */
}

/* Ensure no extra chevrons */
.menu-item .bi-chevron-down[b-sktoefvpl5] {
    display: none; /* Hide the chevron after the icon */
}

/* Admin chevron before the cog icon */
.navbar-brand.dropdown-toggle i.bi-chevron-down[b-sktoefvpl5] {
    margin-left: 10px !important; /* Add space between "Admin" text and chevron */
    margin-right: 10px !important; /* Add space between chevron and cog icon */
}

/* Align all icons in menu items consistently */
.menu-item i[b-sktoefvpl5] {
    margin-right: 10px; /* Ensure consistent padding on all menu item icons */
}

/* Divider styles for mobile */
@media (max-width: 1279px) {
    .dropdown-divider[b-sktoefvpl5] {
        display: block; /* Show divider only on mobile */
        height: 1px; /* Height of the line */
        margin: 0.5rem 0; /* Add margin for spacing */
        background-color: rgba(255, 255, 255, 0.7); /* Visible line color */
    }
}

/* Hide divider on larger screens */
@media (min-width: 1280px) {
    .dropdown-divider[b-sktoefvpl5] {
        display: none; /* Hide divider on desktop */
    }
}
/* _content/CMSite/Shared/Standard.razor.rz.scp.css */
.page[b-bd62st807j] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-bd62st807j] {
    flex: 1;
}

.sidebar[b-bd62st807j] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-bd62st807j] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-bd62st807j]  a, .top-row .btn-link[b-bd62st807j] {
        white-space: nowrap;
        margin-left: 1.5rem;
    }

    .top-row a:first-child[b-bd62st807j] {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row:not(.auth)[b-bd62st807j] {
        display: none;
    }

    .top-row.auth[b-bd62st807j] {
        justify-content: space-between;
    }

    .top-row a[b-bd62st807j], .top-row .btn-link[b-bd62st807j] {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-bd62st807j] {
        flex-direction: row;
    }

    .sidebar[b-bd62st807j] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-bd62st807j] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row[b-bd62st807j], article[b-bd62st807j] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}
/* _content/CMSite/Shared/TallyzoMenu.razor.rz.scp.css */

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
    .navbar[b-8xcyb1gxfg] {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        bottom: 0;
        transition: 0.3s;
        z-index: 9997;
    }

        .navbar ul[b-8xcyb1gxfg] {
            position: absolute;
            inset: 0;
            padding: 50px 0 10px 0;
            margin: 0;
            background: rgba(27, 47, 69, 0.9);
            overflow-y: auto;
            transition: 0.3s;
            z-index: 9998;
        }

        .navbar a[b-8xcyb1gxfg],
        .navbar a:focus[b-8xcyb1gxfg] {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 20px;
            font-family: var(--font-default);
            font-size: 15px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.7);
            white-space: nowrap;
            transition: 0.3s;
        }

            .navbar a i[b-8xcyb1gxfg],
            .navbar a:focus i[b-8xcyb1gxfg] {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
            }

            .navbar a:hover[b-8xcyb1gxfg],
            .navbar .active[b-8xcyb1gxfg],
            .navbar .active:focus[b-8xcyb1gxfg],
            .navbar li:hover > a[b-8xcyb1gxfg] {
                color: #fff;
            }

        .navbar .dropdown ul[b-8xcyb1gxfg],
        .navbar .dropdown .dropdown ul[b-8xcyb1gxfg] {
            position: static;
            display: none;
            padding: 10px 0;
            margin: 10px 20px;
            background-color: rgba(20, 35, 51, 0.6);
        }

        .navbar .dropdown > .dropdown-active[b-8xcyb1gxfg],
        .navbar .dropdown .dropdown > .dropdown-active[b-8xcyb1gxfg] {
            display: block;
        }

    .mobile-nav-show[b-8xcyb1gxfg] {
        color: rgba(255, 255, 255, 0.9);
        font-size: 28px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
    }

    .mobile-nav-hide[b-8xcyb1gxfg] {
        color: rgba(255, 255, 255, 0.9);
        font-size: 32px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        position: fixed;
        right: 15px;
        top: 15px;
        z-index: 9999;
    }

    .mobile-nav-active[b-8xcyb1gxfg] {
        overflow: hidden;
    }

        .mobile-nav-active .navbar[b-8xcyb1gxfg] {
            right: 0;
        }

            .mobile-nav-active .navbar[b-8xcyb1gxfg]:before {
                content: "";
                position: fixed;
                inset: 0;
                background: rgba(27, 47, 69, 0.7);
                z-index: 9996;
            }
}
