/* /Components/TpPopup.razor.rz.scp.css */
.tp-popup-overlay[b-g8sr2xpes8] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
}

.tp-popup-content[b-g8sr2xpes8] {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 300px;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.tp-popup-header[b-g8sr2xpes8] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
}

.tp-popup-title[b-g8sr2xpes8] {
    margin: 0;
    font-size: 1.25rem;
}

.tp-popup-close-btn[b-g8sr2xpes8] {
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: #6c757d;
    padding: 0;
}

.tp-popup-close-btn:hover[b-g8sr2xpes8] {
    color: #000;
}

.tp-popup-body[b-g8sr2xpes8] {
    padding: 1rem;
    overflow-y: auto;
}
/* /Components/TpTabs.razor.rz.scp.css */
.tp-tabs[b-nimva7fngv] {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.tp-tab-headers[b-nimva7fngv] {
    display: flex;
    border-bottom: 1px solid #ccc;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.tp-tab-header[b-nimva7fngv] {
    padding: 0.5rem 1rem;
    cursor: pointer;
    border: 1px solid transparent;
    border-bottom: none;
    margin-bottom: -1px;
    background-color: #f8f9fa;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    color: #333;
    transition: all 0.2s ease-in-out;
}

.tp-tab-header:hover[b-nimva7fngv] {
    background-color: #e9ecef;
}

.tp-tab-header.active[b-nimva7fngv] {
    background-color: #fff;
    border-color: #ccc #ccc #fff #ccc;
    font-weight: bold;
    color: #000;
}

.tp-tab-content[b-nimva7fngv] {
    /* No border here initially to keep things clean, or we can use border depending on design */
}
