/* _content/SimpliMed.PWA.TippMeister/Components/AdminLayout.razor.rz.scp.css */
/* AdminLayout.razor.css */

html[b-2hys35nq81], body[b-2hys35nq81] {
    height: 100% !important;
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    overscroll-behavior: none !important;
}

/* Root variables */
:root[b-2hys35nq81] {
    --primary-color: #1ca9c9;
    --primary-dark-color: #0aaf25;
    --secondary-color: #607D8B;
    --background-color: #EEF2F6;
    --surface-color: #FFFFFF;
    --text-color: #212121;
    --text-secondary-color: #757575;
    --error-color: #F44336;
    --success-color: #4CAF50;
    --border-radius: 4px;
    --shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    --header-height: 60px;
    --secondary-toolbar-height: 56px;
    --side-menu-width: 250px;
    --menu-background-color: #f5f7fa;
    --table-header-background: #f0f0f0;
}

/* Dark Mode Theme */
[data-theme="dark"][b-2hys35nq81] {
    --primary-color: #1ca9c9;
    --primary-dark-color: #0aaf25;
    --secondary-color: #78909C;
    --background-color: #121212;
    --surface-color: #1E1E1E;
    --text-color: #E0E0E0;
    --text-secondary-color: #9E9E9E;
    --error-color: #EF5350;
    --success-color: #66BB6A;
    --shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    --menu-background-color: #252525;
    --table-header-background: #2C2C2C;
}

/* General styles */
.admin-container[b-2hys35nq81] {
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
}

/* Header styles */
.admin-header[b-2hys35nq81] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    background-color: var(--primary-color);
    color: white;
    padding: 0 16px;
    position: relative;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-left[b-2hys35nq81], .header-right[b-2hys35nq81] {
    display: flex;
    align-items: center;
}

.header-center[b-2hys35nq81] {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
}

.app-title[b-2hys35nq81] {
    font-size: 1.2rem;
    font-weight: 500;
    margin: 0;
}

/* Button styles */
.header-button[b-2hys35nq81] {
    background: none;
    border: none;
    color: white;
    padding: 8px;
    cursor: pointer;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .header-button:hover[b-2hys35nq81] {
        background-color: rgba(255, 255, 255, 0.1);
    }

/* Avatar and notification badge */
.avatar-container[b-2hys35nq81] {
    position: relative;
    margin-left: 8px;
}

.avatar[b-2hys35nq81] {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
}

    .avatar i[b-2hys35nq81] {
        color: white;
    }

.notification-badge[b-2hys35nq81] {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--error-color);
    color: white;
    font-size: 0.7rem;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Search bar */
.search-container[b-2hys35nq81] {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1;
    max-width: 600px;
    margin: 0 auto;
}

.search-box[b-2hys35nq81] {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: background-color 0.2s;
}

    .search-box:focus-within[b-2hys35nq81] {
        background-color: rgba(255, 255, 255, 0.25);
    }

.search-icon[b-2hys35nq81] {
    position: absolute;
    left: 12px;
    color: white;
    font-size: 0.9rem;
    opacity: 0.8;
}

.search-input[b-2hys35nq81] {
    border: none;
    background: transparent;
    padding: 8px 12px 8px 36px;
    width: 100%;
    outline: none;
    font-size: 0.95rem;
    color: white;
}

    .search-input[b-2hys35nq81]::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

.clear-search-button[b-2hys35nq81] {
    background: transparent;
    border: none;
    color: white;
    padding: 0 10px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

    .clear-search-button.visible[b-2hys35nq81] {
        opacity: 1;
    }

/* Main content area */
.admin-content-wrapper[b-2hys35nq81] {
    display: flex;
    height: calc(100vh - var(--header-height));
    overflow: hidden;
}

/* Side menu */
.side-menu[b-2hys35nq81] {
    width: var(--side-menu-width);
    background-color: var(--menu-background-color);
    height: 100%;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    position: absolute;
    z-index: 990;
    box-shadow: var(--shadow);
}

    .side-menu.open[b-2hys35nq81] {
        transform: translateX(0);
    }

    .side-menu.pinned[b-2hys35nq81] {
        position: relative;
        transform: translateX(0);
    }

.menu-header[b-2hys35nq81] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.menu-title[b-2hys35nq81] {
    font-weight: 500;
    margin: 0;
    color: var(--primary-color);
}

.pin-button[b-2hys35nq81] {
    background: transparent;
    border: none;
    color: var(--text-secondary-color);
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
}

    .pin-button:hover[b-2hys35nq81] {
        background-color: rgba(0, 0, 0, 0.05);
    }

    .pin-button i[b-2hys35nq81] {
        transition: transform 0.2s;
    }

    .pin-button.pinned i[b-2hys35nq81] {
        transform: rotate(-45deg);
        color: var(--primary-color);
    }

.menu-items[b-2hys35nq81] {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item[b-2hys35nq81] {
    margin: 4px 0;
}

    .menu-item-disabled[b-2hys35nq81] {
        pointer-events: none;
        opacity: 0.5;
    }

        .menu-item-disabled a[b-2hys35nq81] {
            cursor: default;
        }

        .menu-item-disabled:hover[b-2hys35nq81] {
            background-color: transparent;
        }

.menu-link[b-2hys35nq81] {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.2s;
}

    .menu-link:hover[b-2hys35nq81] {
        background-color: rgba(28, 169, 201, 0.1);
    }

    .menu-link.active[b-2hys35nq81] {
        background-color: rgba(28, 169, 201, 0.15);
        border-left: 3px solid var(--primary-color);
        font-weight: 500;
    }

    .menu-link i[b-2hys35nq81] {
        margin-right: 16px;
        width: 24px;
        text-align: center;
        color: var(--primary-color);
    }

/* Main content area */
.admin-main[b-2hys35nq81] {
    overflow: hidden !important;
    position: relative !important;
    overscroll-behavior: none !important;
    flex-grow: 1;
    /*overflow-y: auto;*/
    padding: 16px;
    transition: margin-left 0.3s ease;
    background-color: var(--background-color);
}

    .admin-main.menu-pinned[b-2hys35nq81] {
       /*margin-left: var(--side-menu-width);*/
    }

/* Card styles */
.card[b-2hys35nq81] {
    background-color: var(--surface-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 16px;
    overflow: hidden;
}

.card-header[b-2hys35nq81] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.card-title[b-2hys35nq81] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
}

.card-actions[b-2hys35nq81] {
    display: flex;
    gap: 8px;
}

.card-body[b-2hys35nq81] {
    padding: 16px;
}

.card-footer[b-2hys35nq81] {
    padding: 12px 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background-color: rgba(0, 0, 0, 0.02);
}

/* Button styles */
.btn[b-2hys35nq81] {
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary[b-2hys35nq81] {
    background-color: var(--primary-color);
    color: white;
}

    .btn-primary:hover[b-2hys35nq81] {
        background-color: var(--primary-dark-color);
    }

.btn-secondary[b-2hys35nq81] {
    background-color: #f0f0f0;
    color: var(--text-color);
}

    .btn-secondary:hover[b-2hys35nq81] {
        background-color: #e0e0e0;
    }

.btn-danger[b-2hys35nq81] {
    background-color: var(--error-color);
    color: white;
}

    .btn-danger:hover[b-2hys35nq81] {
        background-color: #d32f2f;
    }

.btn-icon[b-2hys35nq81] {
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dropdown menu */
.dropdown[b-2hys35nq81] {
    position: relative;
}

.dropdown-menu[b-2hys35nq81] {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 200px;
    background-color: var(--surface-color);
    border-radius: var(--border-radius);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    z-index: 1050;
    margin-top: 11px;
    /*animation: fadeIn 0.05s ease;*/
    overflow: hidden;
}

@keyframes fadeIn-b-2hys35nq81 {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu.show[b-2hys35nq81] {
    display: block;
}

.dropdown-item[b-2hys35nq81] {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.2s;
    font-size: 0.95rem;
}

    .dropdown-item:hover[b-2hys35nq81] {
        background-color: rgba(33, 150, 243, 0.08);
    }

    .dropdown-item i[b-2hys35nq81] {
        width: 24px;
        margin-right: 12px;
        color: var(--primary-color);
        font-size: 1rem;
        text-align: center;
    }

.dropdown-divider[b-2hys35nq81] {
    height: 1px;
    background-color: rgba(0, 0, 0, 0.08);
    margin: 6px 0;
}

/* Theme panel styles */
.theme-panel[b-2hys35nq81] {
    display: none;
    position: absolute;
    top: var(--header-height);
    right: 16px;
    width: 250px;
    background-color: var(--surface-color);
    border-radius: var(--border-radius);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    z-index: 1100;
    overflow: hidden;
}

    .theme-panel.show[b-2hys35nq81] {
        display: block;
        /*animation: fadeIn 0.2s ease;*/
    }

.theme-panel-header[b-2hys35nq81] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

    .theme-panel-header h3[b-2hys35nq81] {
        margin: 0;
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-color);
    }

.close-panel-button[b-2hys35nq81] {
    background: transparent;
    color: var(--text-secondary-color);
    border: none;
    font-size: 1rem;
    padding: 4px;
    cursor: pointer;
}

.theme-panel-content[b-2hys35nq81] {
    padding: 16px;
}

.theme-option[b-2hys35nq81] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.theme-option-label[b-2hys35nq81] {
    font-weight: 500;
}

/* Toggle switch */
.toggle-switch[b-2hys35nq81] {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

    .toggle-switch input[b-2hys35nq81] {
        opacity: 0;
        width: 0;
        height: 0;
    }

.toggle-slider[b-2hys35nq81] {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

    .toggle-slider[b-2hys35nq81]:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 3px;
        bottom: 3px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
    }

input:checked + .toggle-slider[b-2hys35nq81] {
    background-color: var(--primary-color);
}

    input:checked + .toggle-slider[b-2hys35nq81]:before {
        transform: translateX(22px);
    }

/* User profile dropdown */
.user-profile-dropdown[b-2hys35nq81] {
    position: absolute;
    top: var(--header-height);
    right: 16px;
    width: 250px;
    background-color: var(--surface-color);
    border-radius: var(--border-radius);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    z-index: 1100;
    overflow: hidden;
    display: none;
}

    .user-profile-dropdown.show[b-2hys35nq81] {
        display: block;
        /*animation: fadeIn 0.2s ease;*/
    }

.profile-header[b-2hys35nq81] {
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.profile-info[b-2hys35nq81] {
    display: flex;
    align-items: center;
}

.profile-avatar[b-2hys35nq81] {
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 1.5rem;
}

.profile-details[b-2hys35nq81] {
    overflow: hidden;
}

.profile-name[b-2hys35nq81] {
    font-weight: 500;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-email[b-2hys35nq81] {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-secondary-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.profile-actions[b-2hys35nq81] {
    padding: 8px 0;
}

.profile-action[b-2hys35nq81] {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.2s;
}

    .profile-action:hover[b-2hys35nq81] {
        background-color: rgba(33, 150, 243, 0.08);
    }

    .profile-action i[b-2hys35nq81] {
        width: 24px;
        margin-right: 12px;
        color: var(--primary-color);
        font-size: 1rem;
        text-align: center;
    }

/* Responsive styles */
@media (max-width: 768px) {
    .search-container[b-2hys35nq81] {
        display: none;
    }

    .admin-main.menu-pinned[b-2hys35nq81] {
        margin-left: 0;
    }

    .side-menu.pinned[b-2hys35nq81] {
        position: absolute;
        z-index: 990;
    }

    .pin-button[b-2hys35nq81] {
        display: none;
    }
}

@media (min-width: 769px) {
    .side-menu[b-2hys35nq81] {
        box-shadow: none;
    }
}

/* Dark Mode adjustments */
[data-theme="dark"] .search-box[b-2hys35nq81] {
    background-color: rgba(255, 255, 255, 0.1);
}

    [data-theme="dark"] .search-box:focus-within[b-2hys35nq81] {
        background-color: rgba(255, 255, 255, 0.15);
    }

[data-theme="dark"] .btn-secondary[b-2hys35nq81] {
    background-color: #333;
}

    [data-theme="dark"] .btn-secondary:hover[b-2hys35nq81] {
        background-color: #444;
    }

[data-theme="dark"] .pin-button:hover[b-2hys35nq81] {
    background-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .menu-link[b-2hys35nq81] {
    color: var(--text-color);
}

[data-theme="dark"] .card[b-2hys35nq81] {
    background-color: var(--surface-color);
}

[data-theme="dark"] .card-footer[b-2hys35nq81] {
    background-color: rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .dropdown-divider[b-2hys35nq81] {
    background-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .dropdown-item:hover[b-2hys35nq81] {
    background-color: rgba(255, 255, 255, 0.05);
}

.menu-item:disabled[b-2hys35nq81] {
    pointer-events: none;
    opacity: 0.5;
}

    .menu-item:disabled a[b-2hys35nq81] {
        cursor: default;
    }

    .menu-item:disabled:hover[b-2hys35nq81] {
        background-color: transparent;
    }
/* _content/SimpliMed.PWA.TippMeister/Components/FileUpload.razor.rz.scp.css */
.file-upload[b-cukfj28gbi] {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 1rem;
}

.file-upload-container[b-cukfj28gbi] {
    cursor: pointer;
    border: 2px dashed #ccc;
    border-radius: var(--border-radius);
    background-color: rgba(0, 0, 0, 0.02);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
}

    .file-upload-container:hover[b-cukfj28gbi] {
        border-color: var(--primary-color);
        background-color: rgba(28, 169, 201, 0.05);
    }

.file-upload.disabled .file-upload-container[b-cukfj28gbi] {
    cursor: not-allowed;
    opacity: 0.6;
    border-color: #ddd;
    background-color: rgba(0, 0, 0, 0.01);
}

    .file-upload.disabled .file-upload-container:hover[b-cukfj28gbi] {
        border-color: #ddd;
        background-color: rgba(0, 0, 0, 0.01);
    }

.upload-placeholder[b-cukfj28gbi] {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-secondary-color);
    text-align: center;
    padding: 1rem;
}

    .upload-placeholder i[b-cukfj28gbi] {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
        color: var(--primary-color);
        opacity: 0.7;
    }

        .upload-placeholder i.fa-spin[b-cukfj28gbi] {
            color: var(--primary-color);
            opacity: 1;
        }

.image-preview[b-cukfj28gbi] {
    width: 100%;
    height: 100%;
    position: relative;
}

    .image-preview img[b-cukfj28gbi] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: opacity 0.3s ease;
    }

.image-loading[b-cukfj28gbi],
.image-error[b-cukfj28gbi] {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary-color);
    text-align: center;
    padding: 1rem;
}

    .image-loading i[b-cukfj28gbi],
    .image-error i[b-cukfj28gbi] {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .image-loading i[b-cukfj28gbi] {
        color: var(--primary-color);
    }

    .image-error i[b-cukfj28gbi] {
        color: var(--error-color);
    }

.retry-btn[b-cukfj28gbi] {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    padding: 0.5rem 1rem;
    margin-top: 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

    .retry-btn:hover[b-cukfj28gbi] {
        background-color: var(--primary-color-dark);
        transform: translateY(-1px);
    }

.image-overlay[b-cukfj28gbi] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.image-preview:hover .image-overlay[b-cukfj28gbi] {
    opacity: 1;
}

.change-image-btn[b-cukfj28gbi],
.remove-image-btn[b-cukfj28gbi] {
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--text-color);
    border: none;
    border-radius: var(--border-radius);
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

    .change-image-btn:hover[b-cukfj28gbi],
    .remove-image-btn:hover[b-cukfj28gbi] {
        background-color: white;
        transform: translateY(-2px);
    }

.remove-image-btn[b-cukfj28gbi] {
    background-color: rgba(244, 67, 54, 0.9);
    color: white;
}

    .remove-image-btn:hover[b-cukfj28gbi] {
        background-color: rgba(244, 67, 54, 1);
    }

.file-input[b-cukfj28gbi] {
    display: none;
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}

.validation-message[b-cukfj28gbi] {
    color: var(--error-color);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .validation-message i[b-cukfj28gbi] {
        font-size: 0.8rem;
    }

.file-upload.is-invalid .file-upload-container[b-cukfj28gbi] {
    border-color: var(--error-color);
    background-color: rgba(244, 67, 54, 0.05);
}

/* Loading animations */
@keyframes spin-b-cukfj28gbi {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.fa-spin[b-cukfj28gbi] {
    animation: spin-b-cukfj28gbi 1s linear infinite;
}

/* Responsive design */
@media (max-width: 768px) {
    .file-upload-container[b-cukfj28gbi] {
        height: 150px;
    }

    .upload-placeholder i[b-cukfj28gbi] {
        font-size: 2rem;
    }

    .image-overlay[b-cukfj28gbi] {
        flex-direction: column;
        gap: 0.5rem;
    }

    .change-image-btn[b-cukfj28gbi],
    .remove-image-btn[b-cukfj28gbi] {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Dark mode adjustments */
:global([data-theme="dark"]) .file-upload-container[b-cukfj28gbi] {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: #555;
}

    :global([data-theme="dark"]) .file-upload-container:hover[b-cukfj28gbi] {
        background-color: rgba(28, 169, 201, 0.1);
        border-color: var(--primary-color);
    }

:global([data-theme="dark"]) .file-upload.disabled .file-upload-container[b-cukfj28gbi] {
    border-color: #444;
    background-color: rgba(255, 255, 255, 0.02);
}

:global([data-theme="dark"]) .change-image-btn[b-cukfj28gbi] {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
}

    :global([data-theme="dark"]) .change-image-btn:hover[b-cukfj28gbi] {
        background-color: rgba(0, 0, 0, 0.9);
    }

:global([data-theme="dark"]) .retry-btn[b-cukfj28gbi] {
    background-color: var(--primary-color);
}

    :global([data-theme="dark"]) .retry-btn:hover[b-cukfj28gbi] {
        background-color: var(--primary-color-dark);
    }

:global([data-theme="dark"]) .image-loading[b-cukfj28gbi],
:global([data-theme="dark"]) .image-error[b-cukfj28gbi] {
    color: rgba(255, 255, 255, 0.7);
}

/* Accessibility improvements */
.file-upload-container:focus-within[b-cukfj28gbi] {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.change-image-btn:focus[b-cukfj28gbi],
.remove-image-btn:focus[b-cukfj28gbi],
.retry-btn:focus[b-cukfj28gbi] {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .file-upload-container[b-cukfj28gbi] {
        border-width: 3px;
    }

    .image-overlay[b-cukfj28gbi] {
        background-color: rgba(0, 0, 0, 0.8);
    }

    .change-image-btn[b-cukfj28gbi],
    .remove-image-btn[b-cukfj28gbi] {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .file-upload-container[b-cukfj28gbi],
    .change-image-btn[b-cukfj28gbi],
    .remove-image-btn[b-cukfj28gbi],
    .retry-btn[b-cukfj28gbi],
    .image-preview img[b-cukfj28gbi],
    .image-overlay[b-cukfj28gbi] {
        transition: none;
    }

    .fa-spin[b-cukfj28gbi] {
        animation: none;
    }
}
/* _content/SimpliMed.PWA.TippMeister/Components/Layout/MainLayout.razor.rz.scp.css */
/* MainLayout component styles */

[b-xgcyhw4glf] html, [b-xgcyhw4glf] body {
    height: 100%;
    width: 100%;
    overflow: auto;
    margin: 0;
    padding: 0;
}

.page[b-xgcyhw4glf] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main[b-xgcyhw4glf] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.content[b-xgcyhw4glf] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

[b-xgcyhw4glf] #blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    [b-xgcyhw4glf] #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/SimpliMed.PWA.TippMeister/Components/OnboardingModals.razor.rz.scp.css */
/* Onboarding Modal Styles */

.modal[b-1alja0fm5m] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .modal.show[b-1alja0fm5m] {
        opacity: 1;
    }

.modal-content[b-1alja0fm5m] {
    background-color: var(--surface-color);
    width: 90%;
    max-width: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn-b-1alja0fm5m 0.3s ease;
    min-height: 80vh !important;
    max-height: 80vh !important;
    display: flex;
    flex-direction: column;
}

@keyframes modalSlideIn-b-1alja0fm5m {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header[b-1alja0fm5m] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

    .modal-header h3[b-1alja0fm5m] {
        color: var(--primary-dark-color);
        margin: 0;
        font-size: 1.2rem;
    }

.step-indicator[b-1alja0fm5m] {
    font-size: 0.9rem;
    color: var(--text-secondary-color);
    background-color: rgba(28, 169, 201, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
}

.modal-body[b-1alja0fm5m] {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.modal-footer[b-1alja0fm5m] {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Form Styles */
.form-group[b-1alja0fm5m] {
    margin-bottom: 16px;
}

    .form-group label[b-1alja0fm5m] {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: var(--text-color);
    }

    .form-group input[b-1alja0fm5m] {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 16px;
        background-color: var(--surface-color);
        color: var(--text-color);
    }

        .form-group input:focus[b-1alja0fm5m] {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 0 2px rgba(28, 169, 201, 0.2);
        }

        .form-group input.invalid[b-1alja0fm5m] {
            border-color: var(--error-color);
            background-color: rgba(244, 67, 54, 0.05);
        }

.required[b-1alja0fm5m] {
    color: var(--error-color);
    margin-left: 2px;
}

/* Campaign List Styles */
.campaign-modal .modal-body[b-1alja0fm5m] {
    padding: 0;
}

.campaign-list[b-1alja0fm5m] {
    padding: 16px;
}

.loading-container[b-1alja0fm5m] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.loading-spinner[b-1alja0fm5m] {
    border: 4px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    border-top: 4px solid var(--primary-color);
    width: 30px;
    height: 30px;
    animation: spin-b-1alja0fm5m 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin-b-1alja0fm5m {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.campaign-grid[b-1alja0fm5m] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.campaign-card[b-1alja0fm5m] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #eee;
    background-color: var(--surface-color);
    transition: all 0.2s ease;
    cursor: pointer;
}

    .campaign-card:hover[b-1alja0fm5m] {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
    }

    .campaign-card.selected[b-1alja0fm5m] {
        border-color: var(--primary-color);
        background-color: rgba(28, 169, 201, 0.05);
    }

.campaign-card-body[b-1alja0fm5m] {
    flex: 1;
}

.campaign-name[b-1alja0fm5m] {
    margin: 0 0 8px 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
}

.campaign-dates[b-1alja0fm5m] {
    font-size: 0.85rem;
    color: var(--text-secondary-color);
    margin-bottom: 4px;
}

.campaign-info[b-1alja0fm5m] {
    font-size: 0.85rem;
    color: var(--text-secondary-color);
}

.campaign-action[b-1alja0fm5m] {
    margin-left: 16px;
}

.action-text[b-1alja0fm5m] {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    background-color: #eee;
    color: var(--text-color);
    font-size: 0.85rem;
    text-align: center;
    transition: all 0.2s ease;
}

    .action-text.selected[b-1alja0fm5m] {
        background-color: rgba(244, 67, 54, 0.1);
        color: var(--error-color);
    }

/* Pagination Styles */
.pagination[b-1alja0fm5m] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
}

.pagination-btn[b-1alja0fm5m] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background-color: #f0f0f0;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.2s ease;
}

    .pagination-btn:hover:not([disabled])[b-1alja0fm5m] {
        background-color: #e0e0e0;
    }

    .pagination-btn.active[b-1alja0fm5m] {
        background-color: var(--primary-color);
        color: white;
    }

    .pagination-btn[disabled][b-1alja0fm5m] {
        opacity: 0.5;
        cursor: not-allowed;
    }

/* Button Styles */
.primary-button[b-1alja0fm5m], .secondary-button[b-1alja0fm5m] {
    padding: 10px 16px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s;
}

.primary-button[b-1alja0fm5m] {
    background-color: var(--primary-color);
    color: white;
}

    .primary-button:hover[b-1alja0fm5m] {
        background-color: var(--primary-dark-color);
    }

.secondary-button[b-1alja0fm5m] {
    background-color: #f0f0f0;
    color: var(--text-color);
}

    .secondary-button:hover[b-1alja0fm5m] {
        background-color: #e0e0e0;
    }

/* Dark Mode Adjustments */
:global([data-theme="dark"]) .campaign-card[b-1alja0fm5m] {
    border-color: #333;
}

:global([data-theme="dark"]) .action-text[b-1alja0fm5m] {
    background-color: #333;
}

    :global([data-theme="dark"]) .action-text.selected[b-1alja0fm5m] {
        background-color: rgba(244, 67, 54, 0.2);
    }

:global([data-theme="dark"]) .pagination-btn[b-1alja0fm5m] {
    background-color: #333;
}

    :global([data-theme="dark"]) .pagination-btn:hover:not([disabled])[b-1alja0fm5m] {
        background-color: #444;
    }

:global([data-theme="dark"]) .secondary-button[b-1alja0fm5m] {
    background-color: #333;
}

    :global([data-theme="dark"]) .secondary-button:hover[b-1alja0fm5m] {
        background-color: #444;
    }

/* Onboarding Modal Styles */

.modal[b-1alja0fm5m] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .modal.show[b-1alja0fm5m] {
        opacity: 1;
    }

.modal-content[b-1alja0fm5m] {
    background-color: var(--surface-color);
    width: 90%;
    max-width: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn-b-1alja0fm5m 0.3s ease;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

@keyframes modalSlideIn-b-1alja0fm5m {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header[b-1alja0fm5m] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    background-color: var(--surface-color);
    z-index: 1;
}

    .modal-header h3[b-1alja0fm5m] {
        color: var(--primary-dark-color);
        margin: 0;
        font-size: 1.2rem;
    }

.step-indicator[b-1alja0fm5m] {
    font-size: 0.9rem;
    color: var(--text-secondary-color);
    background-color: rgba(28, 169, 201, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
}

.modal-body[b-1alja0fm5m] {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.modal-footer[b-1alja0fm5m] {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    position: sticky;
    bottom: 0;
    background-color: var(--surface-color);
    z-index: 1;
}

/* Form Styles */
.form-group[b-1alja0fm5m] {
    margin-bottom: 16px;
}

    .form-group label[b-1alja0fm5m] {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: var(--text-color);
    }

    .form-group input[b-1alja0fm5m] {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 16px;
        background-color: var(--surface-color);
        color: var(--text-color);
    }

        .form-group input:focus[b-1alja0fm5m] {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 0 2px rgba(28, 169, 201, 0.2);
        }

        .form-group input.invalid[b-1alja0fm5m] {
            border-color: var(--error-color);
            background-color: rgba(244, 67, 54, 0.05);
        }

.required[b-1alja0fm5m] {
    color: var(--error-color);
    margin-left: 2px;
}

/* Photo upload step styles */
.photo-upload-container[b-1alja0fm5m] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 0;
}

.upload-intro[b-1alja0fm5m] {
    margin-bottom: 20px;
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.5;
}

.upload-note[b-1alja0fm5m] {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary-color);
    font-style: italic;
    line-height: 1.4;
}

/* Campaign List Styles */
.campaign-modal .modal-body[b-1alja0fm5m] {
    padding: 0;
}

.campaign-list[b-1alja0fm5m] {
    padding: 16px;
}

.loading-container[b-1alja0fm5m] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.loading-spinner[b-1alja0fm5m] {
    border: 4px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    border-top: 4px solid var(--primary-color);
    width: 30px;
    height: 30px;
    animation: spin-b-1alja0fm5m 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin-b-1alja0fm5m {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* _content/SimpliMed.PWA.TippMeister/Components/OnboardingWizard.razor.rz.scp.css */
/* OnboardingWizard.razor.css */

.onboarding-wizard-container[b-rzx98z0k9n] {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Progress Steps */
.wizard-progress[b-rzx98z0k9n] {
    margin-bottom: 3rem;
}

.progress-steps[b-rzx98z0k9n] {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.step[b-rzx98z0k9n] {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-number[b-rzx98z0k9n] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.step.active .step-number[b-rzx98z0k9n] {
    background-color: #0aaf25;
    color: white;
}

.step.completed .step-number[b-rzx98z0k9n] {
    background-color: #4CAF50;
    color: white;
}

.step-label[b-rzx98z0k9n] {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.step.active .step-label[b-rzx98z0k9n] {
    color: #0aaf25;
}

.step.completed .step-label[b-rzx98z0k9n] {
    color: #4CAF50;
}

.progress-line[b-rzx98z0k9n] {
    width: 80px;
    height: 2px;
    background-color: #e0e0e0;
    margin: 0 1rem;
    margin-bottom: 32px;
    transition: background-color 0.3s ease;
}

    .progress-line.completed[b-rzx98z0k9n] {
        background-color: #4CAF50;
    }

/* Step Content */
.step-content[b-rzx98z0k9n] {
    text-align: center;
}

    .step-content h3[b-rzx98z0k9n] {
        color: #333;
        margin-bottom: 1rem;
        font-size: 1.5rem;
        font-weight: 600;
    }

    .step-content p[b-rzx98z0k9n] {
        color: #666;
        margin-bottom: 2rem;
        font-size: 1.1rem;
        line-height: 1.6;
    }

/* Teams Selection */
.teams-selection[b-rzx98z0k9n] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.selected-teams-counter[b-rzx98z0k9n] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: #333;
}

.counter-badge[b-rzx98z0k9n] {
    background-color: #0aaf25;
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.teams-actions[b-rzx98z0k9n] {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn[b-rzx98z0k9n] {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 1rem;
}

.btn-primary[b-rzx98z0k9n] {
    background-color: #0aaf25;
    color: white;
}

    .btn-primary:hover:not(:disabled)[b-rzx98z0k9n] {
        background-color: #439aA1;
        transform: translateY(-1px);
    }

    .btn-primary:disabled[b-rzx98z0k9n] {
        background-color: #ccc;
        cursor: not-allowed;
    }

.btn-secondary[b-rzx98z0k9n] {
    background-color: #f0f0f0;
    color: #333;
}

    .btn-secondary:hover[b-rzx98z0k9n] {
        background-color: #e0e0e0;
    }

.btn-outline[b-rzx98z0k9n] {
    background-color: transparent;
    color: #0aaf25;
    border: 2px solid #0aaf25;
}

    .btn-outline:hover[b-rzx98z0k9n] {
        background-color: #0aaf25;
        color: white;
    }

.btn-success[b-rzx98z0k9n] {
    background-color: #4CAF50;
    color: white;
}

    .btn-success:hover:not(:disabled)[b-rzx98z0k9n] {
        background-color: #45a049;
    }

.btn-icon[b-rzx98z0k9n] {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.btn-remove[b-rzx98z0k9n] {
    background-color: #f44336;
    color: white;
    font-size: 0.8rem;
}

    .btn-remove:hover[b-rzx98z0k9n] {
        background-color: #d32f2f;
    }

/* Selected Teams List */
.selected-teams-list[b-rzx98z0k9n] {
    margin-bottom: 2rem;
}

    .selected-teams-list h4[b-rzx98z0k9n] {
        color: #333;
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

.teams-grid[b-rzx98z0k9n] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.team-card[b-rzx98z0k9n] {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    transition: transform 0.2s ease;
}

    .team-card:hover[b-rzx98z0k9n] {
        transform: translateY(-2px);
    }

.team-logo[b-rzx98z0k9n] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #0aaf25;
}

.team-name[b-rzx98z0k9n] {
    font-weight: 500;
    color: #333;
    text-align: center;
    font-size: 0.9rem;
}

/* Matches Creation */
.matches-creation[b-rzx98z0k9n] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.matches-counter[b-rzx98z0k9n] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: #333;
}

.created-matches-list[b-rzx98z0k9n] {
    margin-bottom: 2rem;
}

    .created-matches-list h4[b-rzx98z0k9n] {
        color: #333;
        margin-bottom: 1rem;
        font-size: 1.2rem;
    }

.matches-list[b-rzx98z0k9n] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.match-card[b-rzx98z0k9n] {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.2s ease;
}

    .match-card:hover[b-rzx98z0k9n] {
        transform: translateY(-2px);
    }

.match-teams[b-rzx98z0k9n] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.team[b-rzx98z0k9n] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vs[b-rzx98z0k9n] {
    font-weight: 600;
    color: #666;
}

.match-date[b-rzx98z0k9n] {
    font-size: 0.9rem;
    color: #666;
}

/* Campaign Form */
.campaign-form[b-rzx98z0k9n] {
    max-width: 500px;
    margin: 0 auto 2rem;
    text-align: left;
}

.form-group[b-rzx98z0k9n] {
    margin-bottom: 1.5rem;
}

    .form-group label[b-rzx98z0k9n] {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 500;
        color: #333;
    }

.form-control[b-rzx98z0k9n] {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

    .form-control:focus[b-rzx98z0k9n] {
        outline: none;
        border-color: #0aaf25;
    }

.form-row[b-rzx98z0k9n] {
    display: flex;
    gap: 1rem;
}

.form-group-half[b-rzx98z0k9n] {
    flex: 1;
}

.campaign-summary[b-rzx98z0k9n] {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

    .campaign-summary h4[b-rzx98z0k9n] {
        color: #333;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

.summary-item[b-rzx98z0k9n] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    color: #666;
}

    .summary-item i[b-rzx98z0k9n] {
        color: #0aaf25;
        width: 16px;
    }

/* Step Actions */
.step-actions[b-rzx98z0k9n] {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Team Selector Modal */
.team-selector-modal .modal-content[b-rzx98z0k9n] {
    max-width: 600px;
    max-height: 80vh;
}

.search-container[b-rzx98z0k9n] {
    margin-bottom: 1.5rem;
}

.search-box[b-rzx98z0k9n] {
    position: relative;
}

.search-icon[b-rzx98z0k9n] {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.search-input[b-rzx98z0k9n] {
    width: 100%;
    padding: 0.75rem 0.75rem 0.75rem 2.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
}

    .search-input:focus[b-rzx98z0k9n] {
        outline: none;
        border-color: #0aaf25;
    }

.teams-list[b-rzx98z0k9n] {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 1rem;
}

.team-item[b-rzx98z0k9n] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-bottom: 0.5rem;
}

    .team-item:hover[b-rzx98z0k9n] {
        background-color: #f0f8ff;
    }

    .team-item.selected[b-rzx98z0k9n] {
        background-color: #e3f2fd;
        border: 2px solid #0aaf25;
    }

.team-info[b-rzx98z0k9n] {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.team-details[b-rzx98z0k9n] {
    display: flex;
    flex-direction: column;
}

.team-meta[b-rzx98z0k9n] {
    font-size: 0.9rem;
    color: #666;
}

.selection-indicator[b-rzx98z0k9n] {
    color: #0aaf25;
    font-size: 1.2rem;
}

.no-teams[b-rzx98z0k9n] {
    text-align: center;
    padding: 2rem;
    color: #666;
}

    .no-teams i[b-rzx98z0k9n] {
        font-size: 2rem;
        margin-bottom: 1rem;
        opacity: 0.5;
    }

.selected-count[b-rzx98z0k9n] {
    color: #666;
    font-size: 0.9rem;
}

/* Create Match Modal */
.create-match-modal .modal-content[b-rzx98z0k9n] {
    max-width: 500px;
}

.team-selection-row[b-rzx98z0k9n] {
    display: flex;
    align-items: end;
    gap: 1rem;
    margin-bottom: 2rem;
}

.team-selector[b-rzx98z0k9n] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

    .team-selector label[b-rzx98z0k9n] {
        margin-bottom: 0.5rem;
        font-weight: 500;
        color: #333;
    }

.team-select-button[b-rzx98z0k9n] {
    width: 100%;
    min-height: 80px;
    border: 2px dashed #ccc;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .team-select-button:hover[b-rzx98z0k9n] {
        border-color: #0aaf25;
        background-color: #f0f8ff;
    }

    .team-select-button.selected[b-rzx98z0k9n] {
        border: 2px solid #0aaf25;
        background-color: #f0f8ff;
    }

.selected-team[b-rzx98z0k9n] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
}

.placeholder[b-rzx98z0k9n] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.vs-separator[b-rzx98z0k9n] {
    margin-bottom: 2rem;
    font-weight: 600;
    color: #666;
    font-size: 1.2rem;
}

.datetime-selection[b-rzx98z0k9n] {
    margin-bottom: 2rem;
}

/* Team Picker Modal */
.team-picker-modal .modal-content[b-rzx98z0k9n] {
    max-width: 400px;
}

.modal-backdrop-secondary[b-rzx98z0k9n] {
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1020;
}

.team-picker-modal[b-rzx98z0k9n] {
    z-index: 1030;
}

.teams-grid .team-option[b-rzx98z0k9n] {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    margin-bottom: 0.5rem;
}

.team-option:hover[b-rzx98z0k9n] {
    border-color: #0aaf25;
    background-color: #f0f8ff;
    transform: translateY(-1px);
}

/* Modal Base Styles */
.modal-backdrop[b-rzx98z0k9n] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal[b-rzx98z0k9n] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1010;
    padding: 1rem;
}

.modal-content[b-rzx98z0k9n] {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes modalFadeIn-b-rzx98z0k9n {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header[b-rzx98z0k9n] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

    .modal-header h3[b-rzx98z0k9n] {
        color: #333;
        margin: 0;
        font-size: 1.3rem;
        font-weight: 600;
    }

.close-button[b-rzx98z0k9n] {
    background: transparent;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 1.5rem;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

    .close-button:hover[b-rzx98z0k9n] {
        background-color: #f0f0f0;
    }

.modal-body[b-rzx98z0k9n] {
    padding: 1.5rem;
}

.modal-footer[b-rzx98z0k9n] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-top: 1px solid #e0e0e0;
    background-color: #f8f9fa;
}

/* Responsive Design */
@media (max-width: 768px) {
    .onboarding-wizard-container[b-rzx98z0k9n] {
        padding: 1rem;
        margin: 1rem;
    }

    .progress-steps[b-rzx98z0k9n] {
        max-width: 300px;
    }

    .progress-line[b-rzx98z0k9n] {
        width: 40px;
    }

    .teams-actions[b-rzx98z0k9n] {
        flex-direction: column;
        width: 100%;
    }

    .teams-grid[b-rzx98z0k9n] {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .team-selection-row[b-rzx98z0k9n] {
        flex-direction: column;
        gap: 1.5rem;
    }

    .vs-separator[b-rzx98z0k9n] {
        margin-bottom: 0;
        transform: rotate(90deg);
    }

    .form-row[b-rzx98z0k9n] {
        flex-direction: column;
        gap: 1rem;
    }

    .step-actions[b-rzx98z0k9n] {
        flex-direction: column;
        width: 100%;
    }

        .step-actions .btn[b-rzx98z0k9n] {
            width: 100%;
            justify-content: center;
        }
}
/* _content/SimpliMed.PWA.TippMeister/Components/OrganisatorOnboardingModals.razor.rz.scp.css */
/* Organisator Onboarding Modal Styles */

.modal[b-mzpty8arq4] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .modal.show[b-mzpty8arq4] {
        opacity: 1;
    }

.modal-content[b-mzpty8arq4] {
    background-color: var(--surface-color);
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    animation: modalSlideIn-b-mzpty8arq4 0.3s ease;
    max-height: 90vh;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
}

@keyframes modalSlideIn-b-mzpty8arq4 {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header[b-mzpty8arq4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    background-color: var(--surface-color);
    z-index: 1;
}

    .modal-header h3[b-mzpty8arq4] {
        color: var(--primary-dark-color);
        margin: 0;
        font-size: 1.2rem;
    }

.step-indicator[b-mzpty8arq4] {
    font-size: 0.9rem;
    color: var(--text-secondary-color);
    background-color: rgba(28, 169, 201, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
}

.modal-body[b-mzpty8arq4] {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.modal-footer[b-mzpty8arq4] {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    position: sticky;
    bottom: 0;
    background-color: var(--surface-color);
    z-index: 1;
}

/* Form Styles */
.form-group[b-mzpty8arq4] {
    margin-bottom: 16px;
}

    .form-group label[b-mzpty8arq4] {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: var(--text-color);
    }

    .form-group input[b-mzpty8arq4],
    .form-group textarea[b-mzpty8arq4] {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 16px;
        background-color: var(--surface-color);
        color: var(--text-color);
        box-sizing: border-box;
    }

        .form-group input:focus[b-mzpty8arq4],
        .form-group textarea:focus[b-mzpty8arq4] {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 0 2px rgba(28, 169, 201, 0.2);
        }

        .form-group input.invalid[b-mzpty8arq4],
        .form-group textarea.invalid[b-mzpty8arq4] {
            border-color: var(--error-color);
            background-color: rgba(244, 67, 54, 0.05);
        }

.required[b-mzpty8arq4] {
    color: var(--error-color);
    margin-left: 2px;
}

/* Photo upload step styles */
.photo-upload-container[b-mzpty8arq4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 0;
}

.upload-intro[b-mzpty8arq4] {
    margin-bottom: 20px;
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.5;
}

.upload-note[b-mzpty8arq4] {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary-color);
    font-style: italic;
    line-height: 1.4;
}

/* Campaign creation step styles */
.campaign-creation-container[b-mzpty8arq4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 0;
}

    .campaign-creation-container .form-group[b-mzpty8arq4] {
        width: 100%;
        text-align: left;
    }

/* Button Styles */
.primary-button[b-mzpty8arq4], .secondary-button[b-mzpty8arq4] {
    padding: 10px 16px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s;
}

.primary-button[b-mzpty8arq4] {
    background-color: var(--primary-color);
    color: white;
}

    .primary-button:hover[b-mzpty8arq4] {
        background-color: var(--primary-dark-color);
    }

    .primary-button:disabled[b-mzpty8arq4] {
        background-color: #ccc;
        cursor: not-allowed;
    }

.secondary-button[b-mzpty8arq4] {
    background-color: #f0f0f0;
    color: var(--text-color);
}

    .secondary-button:hover[b-mzpty8arq4] {
        background-color: #e0e0e0;
    }

/* Loading state */
.loading-container[b-mzpty8arq4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.loading-spinner[b-mzpty8arq4] {
    border: 4px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    border-top: 4px solid var(--primary-color);
    width: 30px;
    height: 30px;
    animation: spin-b-mzpty8arq4 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin-b-mzpty8arq4 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Dark Mode Adjustments */
:global([data-theme="dark"]) .secondary-button[b-mzpty8arq4] {
    background-color: #333;
}

    :global([data-theme="dark"]) .secondary-button:hover[b-mzpty8arq4] {
        background-color: #444;
    }

:global([data-theme="dark"]) .form-group input[b-mzpty8arq4],
:global([data-theme="dark"]) .form-group textarea[b-mzpty8arq4] {
    border-color: #444;
    background-color: #2a2a2a;
}

    :global([data-theme="dark"]) .form-group input:focus[b-mzpty8arq4],
    :global([data-theme="dark"]) .form-group textarea:focus[b-mzpty8arq4] {
        border-color: var(--primary-color);
        background-color: #333;
    }

/* Responsive design */
@media (max-width: 768px) {
    .modal-content[b-mzpty8arq4] {
        width: 95%;
        max-height: 90vh;
        min-height: 90vh;
    }

    .modal-header[b-mzpty8arq4] {
        padding: 12px;
    }

        .modal-header h3[b-mzpty8arq4] {
            font-size: 1.1rem;
        }

    .modal-body[b-mzpty8arq4] {
        padding: 16px;
    }

    .modal-footer[b-mzpty8arq4] {
        padding: 12px;
    }

    .form-group input[b-mzpty8arq4],
    .form-group textarea[b-mzpty8arq4] {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}
/* _content/SimpliMed.PWA.TippMeister/Components/Pages/Admin.razor.rz.scp.css */
/* Admin Dashboard Styles */

.dashboard-container[b-1yoeu0chfr] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Loading spinner */
.loading-container[b-1yoeu0chfr] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 300px;
    width: 100%;
}

.loading-spinner[b-1yoeu0chfr] {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 4px solid var(--primary-color);
    animation: spin-b-1yoeu0chfr 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin-b-1yoeu0chfr {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Dashboard summary cards */
.dashboard-cards[b-1yoeu0chfr] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.summary-card[b-1yoeu0chfr] {
    background-color: var(--surface-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 16px;
    display: flex;
    align-items: center;
}

.summary-card-icon[b-1yoeu0chfr] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-size: 1.4rem;
}

.users-icon[b-1yoeu0chfr] {
    background-color: rgba(33, 150, 243, 0.1);
    color: #2196F3;
}

.matches-icon[b-1yoeu0chfr] {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.predictions-icon[b-1yoeu0chfr] {
    background-color: rgba(255, 152, 0, 0.1);
    color: #FF9800;
}

.accuracy-icon[b-1yoeu0chfr] {
    background-color: rgba(156, 39, 176, 0.1);
    color: #9C27B0;
}

.summary-card-content[b-1yoeu0chfr] {
    flex: 1;
}

.summary-card-title[b-1yoeu0chfr] {
    font-size: 0.9rem;
    color: var(--text-secondary-color);
    margin-bottom: 4px;
}

.summary-card-value[b-1yoeu0chfr] {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
}

/* Dashboard layout */
.dashboard-main[b-1yoeu0chfr] {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
}

.dashboard-chart-section[b-1yoeu0chfr] {
    flex: 2;
}

.dashboard-side-content[b-1yoeu0chfr] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

/* Card styles */
.card[b-1yoeu0chfr] {
    background-color: var(--surface-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.card-header[b-1yoeu0chfr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.card-title[b-1yoeu0chfr] {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
}

.card-actions[b-1yoeu0chfr] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 1rem;
    gap: 8px;
}

.card-body[b-1yoeu0chfr] {
    padding: 16px;
}

    .card-body.p-0[b-1yoeu0chfr] {
        padding: 0;
    }

/* Chart container */
.chart-container[b-1yoeu0chfr] {
    width: 100%;
    height: 300px;
}

/* Activity list */
.activity-list[b-1yoeu0chfr] {
    display: flex;
    flex-direction: column;
}

.activity-item[b-1yoeu0chfr] {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: background-color 0.2s;
}

    .activity-item:last-child[b-1yoeu0chfr] {
        border-bottom: none;
    }

    .activity-item:hover[b-1yoeu0chfr] {
        background-color: rgba(0, 0, 0, 0.02);
    }

.activity-icon[b-1yoeu0chfr] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-size: 1rem;
}

.activity-content[b-1yoeu0chfr] {
    flex: 1;
}

.activity-message[b-1yoeu0chfr] {
    margin-bottom: 4px;
}

.activity-time[b-1yoeu0chfr] {
    font-size: 0.8rem;
    color: var(--text-secondary-color);
}

/* Activity icon colors */
.activity-icon.user-icon[b-1yoeu0chfr] {
    background-color: rgba(33, 150, 243, 0.1);
    color: #2196F3;
}

.activity-icon.prediction-icon[b-1yoeu0chfr] {
    background-color: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.activity-icon.match-icon[b-1yoeu0chfr] {
    background-color: rgba(255, 152, 0, 0.1);
    color: #FF9800;
}

.activity-icon.system-icon[b-1yoeu0chfr] {
    background-color: rgba(156, 39, 176, 0.1);
    color: #9C27B0;
}

/* Time filter */
.time-filter[b-1yoeu0chfr] {
    display: flex;
    gap: 4px;
}

.time-filter-btn[b-1yoeu0chfr] {
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    padding: 4px 8px;
    font-size: 0.8rem;
    cursor: pointer;
    color: var(--text-secondary-color);
    transition: all 0.2s;
}

    .time-filter-btn:hover[b-1yoeu0chfr] {
        background-color: rgba(0, 0, 0, 0.05);
    }

    .time-filter-btn.active[b-1yoeu0chfr] {
        background-color: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
    }

/* Stat items */
.stat-item[b-1yoeu0chfr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

    .stat-item:last-child[b-1yoeu0chfr] {
        border-bottom: none;
    }

.stat-label[b-1yoeu0chfr] {
    color: var(--text-secondary-color);
}

.stat-value[b-1yoeu0chfr] {
    font-weight: 500;
    color: var(--text-color);
    font-size: 1.1rem;
}

/* Campaign list */
.campaign-list[b-1yoeu0chfr] {
    display: flex;
    flex-direction: column;
}

.campaign-item[b-1yoeu0chfr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: background-color 0.2s;
}

    .campaign-item:last-child[b-1yoeu0chfr] {
        border-bottom: none;
    }

    .campaign-item:hover[b-1yoeu0chfr] {
        background-color: rgba(0, 0, 0, 0.02);
    }

.campaign-name[b-1yoeu0chfr] {
    font-weight: 500;
    margin-bottom: 4px;
}

.campaign-dates[b-1yoeu0chfr] {
    font-size: 0.8rem;
    color: var(--text-secondary-color);
}

.campaign-stats[b-1yoeu0chfr] {
    display: flex;
    gap: 16px;
}

.campaign-stat[b-1yoeu0chfr] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--text-secondary-color);
}

/* Button styles */
.btn[b-1yoeu0chfr] {
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-icon[b-1yoeu0chfr] {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--text-secondary-color);
    border-radius: var(--border-radius);
}

    .btn-icon:hover[b-1yoeu0chfr] {
        background-color: rgba(0, 0, 0, 0.05);
        color: var(--primary-color);
    }

.btn-link[b-1yoeu0chfr] {
    background-color: transparent;
    color: var(--primary-color);
    padding: 4px 8px;
    font-size: 0.9rem;
    text-decoration: none;
}

    .btn-link:hover[b-1yoeu0chfr] {
        text-decoration: underline;
    }

/* No data display */
.no-data[b-1yoeu0chfr] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 16px;
    color: var(--text-secondary-color);
    text-align: center;
}

    .no-data i[b-1yoeu0chfr] {
        font-size: 2rem;
        margin-bottom: 16px;
        opacity: 0.5;
    }

/* Dark Mode adjustments */
[data-theme="dark"] .loading-spinner[b-1yoeu0chfr] {
    border-color: rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary-color);
}

[data-theme="dark"] .activity-item:hover[b-1yoeu0chfr],
[data-theme="dark"] .campaign-item:hover[b-1yoeu0chfr] {
    background-color: rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .time-filter-btn[b-1yoeu0chfr] {
    border-color: rgba(255, 255, 255, 0.1);
}

    [data-theme="dark"] .time-filter-btn:hover[b-1yoeu0chfr] {
        background-color: rgba(255, 255, 255, 0.05);
    }

[data-theme="dark"] .btn-icon:hover[b-1yoeu0chfr] {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Responsive design */
@media (max-width: 1200px) {
    .dashboard-cards[b-1yoeu0chfr] {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-main[b-1yoeu0chfr] {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dashboard-cards[b-1yoeu0chfr] {
        grid-template-columns: 1fr;
    }

    .card-actions[b-1yoeu0chfr] {
        flex-direction: column;
        align-items: flex-end;
    }

    .campaign-item[b-1yoeu0chfr] {
        flex-direction: column;
        align-items: flex-start;
    }

    .campaign-stats[b-1yoeu0chfr] {
        margin-top: 8px;
    }
}

/* Avatar and notification badge */
.avatar-container[b-1yoeu0chfr] {
    position: relative;
    margin-left: 8px;
}

.avatar[b-1yoeu0chfr] {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
}

    .avatar i[b-1yoeu0chfr] {
        color: white;
    }

.notification-badge[b-1yoeu0chfr] {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--error-color);
    color: white;
    font-size: 0.7rem;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Search bar */
.search-container[b-1yoeu0chfr] {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1;
    max-width: 600px;
    margin: 0 auto;
}

.search-box[b-1yoeu0chfr] {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: background-color 0.2s;
}

    .search-box:focus-within[b-1yoeu0chfr] {
        background-color: rgba(255, 255, 255, 0.25);
    }

.search-icon[b-1yoeu0chfr] {
    position: absolute;
    left: 12px;
    color: white;
    font-size: 0.9rem;
    opacity: 0.8;
}

.search-input[b-1yoeu0chfr] {
    border: none;
    background: transparent;
    padding: 8px 12px 8px 36px;
    width: 100%;
    outline: none;
    font-size: 0.95rem;
    color: white;
}

    .search-input[b-1yoeu0chfr]::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

.clear-search-button[b-1yoeu0chfr] {
    background: transparent;
    border: none;
    color: white;
    padding: 0 10px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
}

    .clear-search-button.visible[b-1yoeu0chfr] {
        opacity: 1;
    }

/* Enhanced Onboarding CTA Styles - Add to Admin.razor.css */

.onboarding-buttons[b-1yoeu0chfr] {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-outline[b-1yoeu0chfr] {
    background-color: transparent;
    color: #0aaf25;
    border: 2px solid #0aaf25;
    transition: all 0.2s ease-in-out;
}

    .btn-outline:hover[b-1yoeu0chfr] {
        background-color: #0aaf25;
        color: white;
        /*transform: translateY(-1px);*/
    }

.btn-lg[b-1yoeu0chfr] {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.cta-button-main[b-1yoeu0chfr] {
    position: relative;
    overflow: hidden;
}

   /* .cta-button-main::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        transition: left 0.5s;
    }*/

   /* .cta-button-main:hover::before {
        left: 100%;
    }*/

.onboarding-wrapper[b-1yoeu0chfr] {
    backdrop-filter: blur(2px);
}

/* Animations for the timeline steps */
.timeline-step[b-1yoeu0chfr] {
    animation: slideInUp-b-1yoeu0chfr 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

    .timeline-step:nth-child(1)[b-1yoeu0chfr] {
        animation-delay: 0.1s;
    }

    .timeline-step:nth-child(2)[b-1yoeu0chfr] {
        animation-delay: 0.2s;
    }

    .timeline-step:nth-child(3)[b-1yoeu0chfr] {
        animation-delay: 0.3s;
    }

@keyframes slideInUp-b-1yoeu0chfr {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced button interactions */
.onboarding-buttons .btn[b-1yoeu0chfr] {
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: all 0.3s ease;
}

    .onboarding-buttons .btn:hover[b-1yoeu0chfr] {
        /*transform: translateY(-2px);*/
        box-shadow: 0 8px 25px rgba(82, 183, 193, 0.3);
    }

    .onboarding-buttons .btn:active[b-1yoeu0chfr] {
        /*transform: translateY(0);*/
    }

/* Improved timeline step hover effects */
.timeline-step-content a[b-1yoeu0chfr] {
    position: relative;
    transition: color 0.2s ease;
}

    .timeline-step-content a[b-1yoeu0chfr]::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -2px;
        left: 0;
        background-color: #0aaf25;
        transition: width 0.3s ease;
    }

    .timeline-step-content a:hover[b-1yoeu0chfr]::after {
        width: 100%;
    }

/* Mobile responsive enhancements */
@media (max-width: 768px) {
    .onboarding-buttons[b-1yoeu0chfr] {
        flex-direction: column;
        align-items: stretch;
    }

        .onboarding-buttons .btn[b-1yoeu0chfr] {
            width: 100%;
            margin-bottom: 0.5rem;
        }

    .btn-lg[b-1yoeu0chfr] {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .timeline-steps[b-1yoeu0chfr] {
        padding-left: 1rem;
    }

    .timeline-step-content[b-1yoeu0chfr] {
        margin-left: 0.5rem;
    }
}

/* Dark mode compatibility */
@media (prefers-color-scheme: dark) {
    .onboarding-cta[b-1yoeu0chfr] {
        background-color: #2d3748;
        color: #e2e8f0;
    }

    .cta-heading[b-1yoeu0chfr] {
        color: #f7fafc;
    }

    .timeline-step-content .step-title[b-1yoeu0chfr] {
        color: #63b3ed;
    }

    .timeline-step-content a[b-1yoeu0chfr] {
        color: #63b3ed;
    }
}
/* _content/SimpliMed.PWA.TippMeister/Components/Pages/AdminActivities.razor.rz.scp.css */
/* AdminActivities.razor.css */

.activities-container[b-nrbmk254uq] {
    padding: 0;
}

.activities-list[b-nrbmk254uq] {
    display: flex;
    flex-direction: column;
}

.activity-item[b-nrbmk254uq] {
    display: flex;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: background-color 0.2s;
}

    .activity-item:hover[b-nrbmk254uq] {
        background-color: rgba(0, 0, 0, 0.02);
    }

.activity-icon[b-nrbmk254uq] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    font-size: 1.2rem;
}

    .activity-icon.user-icon[b-nrbmk254uq] {
        background-color: rgba(33, 150, 243, 0.1);
        color: #2196F3;
    }

    .activity-icon.prediction-icon[b-nrbmk254uq] {
        background-color: rgba(76, 175, 80, 0.1);
        color: #4CAF50;
    }

    .activity-icon.match-icon[b-nrbmk254uq] {
        background-color: rgba(255, 152, 0, 0.1);
        color: #FF9800;
    }

    .activity-icon.system-icon[b-nrbmk254uq] {
        background-color: rgba(156, 39, 176, 0.1);
        color: #9C27B0;
    }

.activity-content[b-nrbmk254uq] {
    flex: 1;
}

.activity-message[b-nrbmk254uq] {
    margin-bottom: 6px;
    font-weight: 500;
}

.activity-details[b-nrbmk254uq] {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-secondary-color);
}

.activity-user[b-nrbmk254uq], .activity-time[b-nrbmk254uq] {
    display: flex;
    align-items: center;
    gap: 4px;
}

.filter-container[b-nrbmk254uq] {
    display: flex;
    gap: 8px;
    margin-right: 16px;
}

.filter-select[b-nrbmk254uq] {
    padding: 8px 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    background-color: var(--surface-color);
    color: var(--text-color);
    min-width: 150px;
}

.date-filter[b-nrbmk254uq] {
    position: absolute;
    top: 100%;
    margin-top: 8px;
    right: 16px;
    width: 300px;
    background-color: var(--surface-color);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
    overflow: hidden;
    display: none;
    animation: fadeIn-b-nrbmk254uq 0.2s ease;
}

    .date-filter.show[b-nrbmk254uq] {
        display: block;
    }

.date-filter-header[b-nrbmk254uq] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

    .date-filter-header h3[b-nrbmk254uq] {
        margin: 0;
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-color);
    }

.close-button[b-nrbmk254uq] {
    background: transparent;
    border: none;
    color: var(--text-secondary-color);
    cursor: pointer;
    font-size: 1rem;
    padding: 4px;
}

.date-filter-body[b-nrbmk254uq] {
    padding: 16px;
}

.date-filter-footer[b-nrbmk254uq] {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding: 12px 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.form-group[b-nrbmk254uq] {
    margin-bottom: 16px;
}

    .form-group:last-child[b-nrbmk254uq] {
        margin-bottom: 0;
    }

    .form-group label[b-nrbmk254uq] {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
    }

.form-control[b-nrbmk254uq] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    background-color: var(--surface-color);
    color: var(--text-color);
    font-size: 1rem;
}

    .form-control:focus[b-nrbmk254uq] {
        border-color: var(--primary-color);
        outline: none;
        box-shadow: 0 0 0 2px rgba(28, 169, 201, 0.2);
    }

.card-actions[b-nrbmk254uq] {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.pagination[b-nrbmk254uq] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.page-info[b-nrbmk254uq] {
    margin: 0 16px;
    color: var(--text-secondary-color);
    font-size: 0.9rem;
}

/* Loading styles */
.loading-container[b-nrbmk254uq] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
}

.loading-spinner[b-nrbmk254uq] {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 4px solid var(--primary-color);
    animation: spin-b-nrbmk254uq 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin-b-nrbmk254uq {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn-b-nrbmk254uq {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.no-data[b-nrbmk254uq] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
    color: var(--text-secondary-color);
}

    .no-data i[b-nrbmk254uq] {
        font-size: 3rem;
        margin-bottom: 16px;
        opacity: 0.5;
    }

/* Button styles */
.btn[b-nrbmk254uq] {
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary[b-nrbmk254uq] {
    background-color: var(--primary-color);
    color: white;
}

    .btn-primary:hover[b-nrbmk254uq] {
        background-color: var(--primary-dark-color);
    }

.btn-secondary[b-nrbmk254uq] {
    background-color: #f0f0f0;
    color: var(--text-color);
}

    .btn-secondary:hover[b-nrbmk254uq] {
        background-color: #e0e0e0;
    }

.btn-icon[b-nrbmk254uq] {
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--text-secondary-color);
    border-radius: var(--border-radius);
}

    .btn-icon:hover[b-nrbmk254uq] {
        background-color: rgba(0, 0, 0, 0.05);
        color: var(--primary-color);
    }

/* Dark Mode adjustments */
[data-theme="dark"] .activity-item[b-nrbmk254uq] {
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

    [data-theme="dark"] .activity-item:hover[b-nrbmk254uq] {
        background-color: rgba(255, 255, 255, 0.03);
    }

[data-theme="dark"] .filter-select[b-nrbmk254uq],
[data-theme="dark"] .form-control[b-nrbmk254uq] {
    background-color: #333;
    border-color: rgba(255, 255, 255, 0.1);
}

    [data-theme="dark"] .form-control:focus[b-nrbmk254uq] {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 2px rgba(28, 169, 201, 0.3);
    }

[data-theme="dark"] .btn-secondary[b-nrbmk254uq] {
    background-color: #333;
}

    [data-theme="dark"] .btn-secondary:hover[b-nrbmk254uq] {
        background-color: #444;
    }

[data-theme="dark"] .btn-icon:hover[b-nrbmk254uq] {
    background-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .date-filter-header[b-nrbmk254uq],
[data-theme="dark"] .date-filter-footer[b-nrbmk254uq] {
    border-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .loading-spinner[b-nrbmk254uq] {
    border-color: rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .filter-container[b-nrbmk254uq] {
        flex-wrap: wrap;
    }

    .filter-select[b-nrbmk254uq] {
        flex: 1;
        min-width: 0;
    }

    .card-actions[b-nrbmk254uq] {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .activity-details[b-nrbmk254uq] {
        flex-direction: column;
        gap: 4px;
    }

    .date-filter[b-nrbmk254uq] {
        right: 0;
        width: 100%;
    }
}

/*NEW START*/
/* AdminActivities.razor.css */

.activities-container[b-nrbmk254uq] {
    padding: 0;
}

.table-responsive[b-nrbmk254uq] {
    overflow-x: auto;
}

.activity-table[b-nrbmk254uq] {
    width: 100%;
    border-collapse: collapse;
}

    .activity-table th[b-nrbmk254uq] {
        background-color: var(--table-header-background);
        padding: 12px 16px;
        text-align: left;
        font-weight: 500;
        color: var(--text-color);
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .activity-table td[b-nrbmk254uq] {
        padding: 12px 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        vertical-align: middle;
    }

    .activity-table tr:hover[b-nrbmk254uq] {
        background-color: rgba(0, 0, 0, 0.02);
    }

.activity-row[b-nrbmk254uq] {
    cursor: pointer;
}

.activity-icon[b-nrbmk254uq] {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

    .activity-icon.user-icon[b-nrbmk254uq] {
        background-color: rgba(33, 150, 243, 0.1);
        color: #2196F3;
    }

    .activity-icon.prediction-icon[b-nrbmk254uq] {
        background-color: rgba(76, 175, 80, 0.1);
        color: #4CAF50;
    }

    .activity-icon.match-icon[b-nrbmk254uq] {
        background-color: rgba(255, 152, 0, 0.1);
        color: #FF9800;
    }

    .activity-icon.system-icon[b-nrbmk254uq] {
        background-color: rgba(156, 39, 176, 0.1);
        color: #9C27B0;
    }

.activity-message[b-nrbmk254uq] {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 600px;
}

.actions-cell[b-nrbmk254uq] {
    text-align: right;
}

.filter-container[b-nrbmk254uq] {
    display: flex;
    gap: 8px;
    position: relative;
    margin-right: 16px;
}

.filter-select[b-nrbmk254uq] {
    padding: 8px 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    background-color: var(--surface-color);
    color: var(--text-color);
    min-width: 150px;
    height: 2.7rem;
}

.date-filter[b-nrbmk254uq] {
    position: absolute;
    top: 100%;
    margin-top: 8px;
    right: 0;
    width: 300px;
    background-color: var(--surface-color);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
    overflow: hidden;
    display: none;
    animation: fadeIn-b-nrbmk254uq 0.2s ease;
}

    .date-filter.show[b-nrbmk254uq] {
        display: block;
    }

.date-filter-header[b-nrbmk254uq] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

    .date-filter-header h3[b-nrbmk254uq] {
        margin: 0;
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-color);
    }

.close-button[b-nrbmk254uq] {
    background: transparent;
    border: none;
    color: var(--text-secondary-color);
    cursor: pointer;
    font-size: 1rem;
    padding: 4px;
}

.date-filter-body[b-nrbmk254uq] {
    padding: 16px;
}

.date-filter-footer[b-nrbmk254uq] {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding: 12px 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.form-group[b-nrbmk254uq] {
    margin-bottom: 16px;
}

    .form-group:last-child[b-nrbmk254uq] {
        margin-bottom: 0;
    }

    .form-group label[b-nrbmk254uq] {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
    }

.form-control[b-nrbmk254uq] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    background-color: var(--surface-color);
    color: var(--text-color);
    font-size: 1rem;
}

    .form-control:focus[b-nrbmk254uq] {
        border-color: var(--primary-color);
        outline: none;
        box-shadow: 0 0 0 2px rgba(28, 169, 201, 0.2);
    }

.card-actions[b-nrbmk254uq] {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.pagination[b-nrbmk254uq] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.page-info[b-nrbmk254uq] {
    margin: 0 16px;
    color: var(--text-secondary-color);
    font-size: 0.9rem;
}

/* Loading styles */
.loading-container[b-nrbmk254uq] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
}

.loading-spinner[b-nrbmk254uq] {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 4px solid var(--primary-color);
    animation: spin-b-nrbmk254uq 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin-b-nrbmk254uq {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn-b-nrbmk254uq {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.no-data[b-nrbmk254uq] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
    color: var(--text-secondary-color);
}

    .no-data i[b-nrbmk254uq] {
        font-size: 3rem;
        margin-bottom: 16px;
        opacity: 0.5;
    }

/* Button styles */
.btn[b-nrbmk254uq] {
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary[b-nrbmk254uq] {
    background-color: var(--primary-color);
    color: white;
}

    .btn-primary:hover[b-nrbmk254uq] {
        background-color: var(--primary-dark-color);
    }

.btn-secondary[b-nrbmk254uq] {
    background-color: #f0f0f0;
    color: var(--text-color);
}

    .btn-secondary:hover[b-nrbmk254uq] {
        background-color: #e0e0e0;
    }

.btn-icon[b-nrbmk254uq] {
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--text-secondary-color);
    border-radius: var(--border-radius);
}

    .btn-icon:hover[b-nrbmk254uq] {
        background-color: rgba(0, 0, 0, 0.05);
        color: var(--primary-color);
    }

/* Dark Mode adjustments */
[data-theme="dark"] .activity-table tr:hover[b-nrbmk254uq] {
    background-color: rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .activity-table td[b-nrbmk254uq] {
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .filter-select[b-nrbmk254uq],
[data-theme="dark"] .form-control[b-nrbmk254uq] {
    background-color: #333;
    border-color: rgba(255, 255, 255, 0.1);
}

    [data-theme="dark"] .form-control:focus[b-nrbmk254uq] {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 2px rgba(28, 169, 201, 0.3);
    }

[data-theme="dark"] .btn-secondary[b-nrbmk254uq] {
    background-color: #333;
}

    [data-theme="dark"] .btn-secondary:hover[b-nrbmk254uq] {
        background-color: #444;
    }

[data-theme="dark"] .btn-icon:hover[b-nrbmk254uq] {
    background-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .date-filter-header[b-nrbmk254uq],
[data-theme="dark"] .date-filter-footer[b-nrbmk254uq] {
    border-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .loading-spinner[b-nrbmk254uq] {
    border-color: rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .activity-table th:nth-child(3)[b-nrbmk254uq],
    .activity-table td:nth-child(3)[b-nrbmk254uq] {
        display: none;
    }
}

@media (max-width: 768px) {
    .filter-container[b-nrbmk254uq] {
        flex-wrap: wrap;
    }

    .filter-select[b-nrbmk254uq] {
        flex: 1;
        min-width: 0;
    }

    .card-actions[b-nrbmk254uq] {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .date-filter[b-nrbmk254uq] {
        right: 0;
        width: 100%;
    }

    .activity-table th:nth-child(5)[b-nrbmk254uq],
    .activity-table td:nth-child(5)[b-nrbmk254uq] {
        display: none;
    }
}

@media (max-width: 576px) {
    .activity-table th:nth-child(4)[b-nrbmk254uq],
    .activity-table td:nth-child(4)[b-nrbmk254uq] {
        display: none;
    }
}

/* Common Table Styling to Apply to All Pages */

/* Table Container Fixes */
.table-responsive[b-nrbmk254uq] {
    width: 100%;
    height: 100%;
    overflow: auto !important;
}

/* Fix for AdminLayout scrolling issue */
.admin-main[b-nrbmk254uq] {
    overflow: auto !important;
    display: flex;
    flex-direction: column;
    position: relative !important; /* Change from fixed to relative */
}

/* Match-table styling consistent with AdminUsers */
.match-table[b-nrbmk254uq] {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    font-size: 0.95rem;
    border-spacing: 0;
    background-color: var(--surface-color);
}

    .match-table th[b-nrbmk254uq] {
        background-color: var(--table-header-background);
        color: var(--text-color);
        text-align: left;
        padding: 1rem 0.875rem !important;
        font-weight: 400;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        border: none;
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .match-table td[b-nrbmk254uq] {
        padding: 1.125rem 0.875rem !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
        vertical-align: middle;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .match-table tbody tr:hover[b-nrbmk254uq] {
        background-color: rgba(33, 150, 243, 0.05);
        cursor: pointer;
    }

/* Actions column styling */
.actions-cell[b-nrbmk254uq] {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    justify-content: flex-end !important;
}

/* Status indicator styling */
.status-indicator[b-nrbmk254uq] {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px;
}

    .status-indicator.active[b-nrbmk254uq] {
        background-color: var(--success-color);
    }

    .status-indicator.inactive[b-nrbmk254uq],
    .status-indicator.cancelled[b-nrbmk254uq] {
        background-color: var(--error-color);
    }

    .status-indicator.planned[b-nrbmk254uq] {
        background-color: rgba(76, 175, 80, 0.7);
    }

    .status-indicator.finished[b-nrbmk254uq] {
        background-color: rgba(33, 150, 243, 0.7);
    }

    .status-indicator.postponed[b-nrbmk254uq] {
        background-color: rgba(255, 152, 0, 0.7);
    }

/* Fix icon alignment */
.btn-icon[b-nrbmk254uq] {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--text-secondary-color);
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
}

    .btn-icon:hover[b-nrbmk254uq] {
        background-color: rgba(0, 0, 0, 0.05);
        color: var(--primary-color);
    }

    .btn-icon.danger[b-nrbmk254uq] {
        color: var(--error-color);
    }

        .btn-icon.danger:hover[b-nrbmk254uq] {
            background-color: rgba(244, 67, 54, 0.1);
        }

/* Dark mode adjustments */
[data-theme="dark"] .match-table tr:hover[b-nrbmk254uq] {
    background-color: rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .match-table td[b-nrbmk254uq] {
    border-bottom-color: rgba(255, 255, 255, 0.05) !important;
}

/* Media queries for responsive tables */
@media (max-width: 768px) {
    .card-actions[b-nrbmk254uq] {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .search-box[b-nrbmk254uq] {
        margin-right: 0;
        margin-bottom: 8px;
        width: 100%;
    }

    .search-input[b-nrbmk254uq] {
        width: 100%;
    }
}
/* _content/SimpliMed.PWA.TippMeister/Components/Pages/AdminCampaigns.razor.rz.scp.css */
/* AdminCampaigns.razor.css */

.campaigns-container[b-c6p61huxn8] {
    padding: 0;
}

.campaigns-list[b-c6p61huxn8] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    padding: 20px;
}

.campaign-card[b-c6p61huxn8] {
    background-color: var(--surface-color);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    border-left: 4px solid transparent;
}

    .campaign-card:hover[b-c6p61huxn8] {
        transform: translateY(-4px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    }

    .campaign-card.active[b-c6p61huxn8] {
        border-left-color: #4CAF50;
    }

    .campaign-card.upcoming[b-c6p61huxn8] {
        border-left-color: #FF9800;
    }

    .campaign-card.completed[b-c6p61huxn8] {
        border-left-color: #9E9E9E;
    }

.campaign-header[b-c6p61huxn8] {
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.campaign-title[b-c6p61huxn8] {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
}

.campaign-actions[b-c6p61huxn8] {
    display: flex;
    gap: 4px;
}

.campaign-dates[b-c6p61huxn8] {
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-secondary-color);
    background-color: rgba(0, 0, 0, 0.02);
}

.date-range[b-c6p61huxn8] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.campaign-status-badge[b-c6p61huxn8] {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

    .campaign-status-badge.active[b-c6p61huxn8] {
        background-color: rgba(76, 175, 80, 0.1);
        color: #4CAF50;
    }

    .campaign-status-badge.upcoming[b-c6p61huxn8] {
        background-color: rgba(255, 152, 0, 0.1);
        color: #FF9800;
    }

    .campaign-status-badge.completed[b-c6p61huxn8] {
        background-color: rgba(158, 158, 158, 0.1);
        color: #757575;
    }

.campaign-stats[b-c6p61huxn8] {
    padding: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.stat-item[b-c6p61huxn8] {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary-color);
    font-size: 0.9rem;
}

    .stat-item i[b-c6p61huxn8] {
        width: 16px;
        text-align: center;
        color: var(--primary-color);
    }

.campaign-progress[b-c6p61huxn8] {
    padding: 0 16px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.progress-label[b-c6p61huxn8] {
    font-size: 0.9rem;
    color: var(--text-secondary-color);
    min-width: 70px;
}

.progress-bar-container[b-c6p61huxn8] {
    flex: 1;
    height: 6px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar[b-c6p61huxn8] {
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.progress-text[b-c6p61huxn8] {
    font-size: 0.9rem;
    color: var(--text-secondary-color);
    min-width: 40px;
    text-align: right;
}

.filter-container[b-c6p61huxn8] {
    display: flex;
    gap: 16px;
    margin-right: 16px;
}

.filter-select[b-c6p61huxn8] {
    padding: 8px 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    background-color: var(--surface-color);
    color: var(--text-color);
    min-width: 150px;
}

.search-box[b-c6p61huxn8] {
    position: relative;
}

.search-icon[b-c6p61huxn8] {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary-color);
}

.search-input[b-c6p61huxn8] {
    padding: 8px 12px 8px 32px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    width: 250px;
    background-color: var(--surface-color);
    color: var(--text-color);
}

.card-actions[b-c6p61huxn8] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.pagination[b-c6p61huxn8] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.page-info[b-c6p61huxn8] {
    margin: 0 16px;
    color: var(--text-secondary-color);
    font-size: 0.9rem;
}

/* Modal styles */
.modal-backdrop[b-c6p61huxn8] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal[b-c6p61huxn8] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1010;
}

.modal-content[b-c6p61huxn8] {/*
    min-height: 35rem;
    max-height: 35rem;*/
    background-color: var(--surface-color);
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    /**/
}

@keyframes modalFadeIn-b-c6p61huxn8 {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header[b-c6p61huxn8] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

    .modal-header h3[b-c6p61huxn8] {
        color: var(--primary-dark-color);
        margin: 0;
        font-size: 1.2rem;
    }

.close-button[b-c6p61huxn8] {
    background: transparent;
    border: none;
    color: var(--text-secondary-color);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
}

.modal-body[b-c6p61huxn8] {
    padding: 20px;
}

.modal-footer[b-c6p61huxn8] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.form-group[b-c6p61huxn8] {
    margin-bottom: 16px;
}

.form-row[b-c6p61huxn8] {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group-half[b-c6p61huxn8] {
    flex: 1;
    margin-bottom: 0;
}

.form-group label[b-c6p61huxn8] {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control[b-c6p61huxn8] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    background-color: var(--surface-color);
    color: var(--text-color);
    font-size: 1rem;
}

    .form-control:focus[b-c6p61huxn8] {
        border-color: var(--primary-color);
        outline: none;
        box-shadow: 0 0 0 2px rgba(28, 169, 201, 0.2);
    }

.form-checkbox[b-c6p61huxn8] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

    .form-checkbox input[type="checkbox"][b-c6p61huxn8] {
        width: 16px;
        height: 16px;
    }

.text-danger[b-c6p61huxn8] {
    color: var(--error-color);
}

/* Loading styles */
.loading-container[b-c6p61huxn8] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
}

.loading-spinner[b-c6p61huxn8] {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 4px solid var(--primary-color);
    animation: spin-b-c6p61huxn8 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin-b-c6p61huxn8 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.no-data[b-c6p61huxn8] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
    color: var(--text-secondary-color);
}

    .no-data i[b-c6p61huxn8] {
        font-size: 3rem;
        margin-bottom: 16px;
        opacity: 0.5;
    }

/* Button styles */
.btn[b-c6p61huxn8] {
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary[b-c6p61huxn8] {
    background-color: var(--primary-color);
    color: white;
}

    .btn-primary:hover[b-c6p61huxn8] {
        background-color: var(--primary-dark-color);
    }

.btn-secondary[b-c6p61huxn8] {
    background-color: #f0f0f0;
    color: var(--text-color);
}

    .btn-secondary:hover[b-c6p61huxn8] {
        background-color: #e0e0e0;
    }

.btn-danger[b-c6p61huxn8] {
    background-color: var(--error-color);
    color: white;
}

    .btn-danger:hover[b-c6p61huxn8] {
        background-color: #d32f2f;
    }

.btn-icon[b-c6p61huxn8] {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--text-secondary-color);
    border-radius: var(--border-radius);
}

    .btn-icon:hover[b-c6p61huxn8] {
        background-color: rgba(0, 0, 0, 0.05);
        color: var(--primary-color);
    }

    .btn-icon.danger[b-c6p61huxn8] {
        color: var(--error-color);
    }

        .btn-icon.danger:hover[b-c6p61huxn8] {
            background-color: rgba(244, 67, 54, 0.1);
        }

/* Dark Mode adjustments */
[data-theme="dark"] .campaign-card[b-c6p61huxn8] {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

    [data-theme="dark"] .campaign-card:hover[b-c6p61huxn8] {
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }

[data-theme="dark"] .campaign-dates[b-c6p61huxn8] {
    background-color: rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .progress-bar-container[b-c6p61huxn8] {
    background-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .form-control[b-c6p61huxn8] {
    background-color: #333;
    border-color: rgba(255, 255, 255, 0.1);
}

    [data-theme="dark"] .form-control:focus[b-c6p61huxn8] {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 2px rgba(28, 169, 201, 0.3);
    }

[data-theme="dark"] .btn-secondary[b-c6p61huxn8] {
    background-color: #333;
}

    [data-theme="dark"] .btn-secondary:hover[b-c6p61huxn8] {
        background-color: #444;
    }

[data-theme="dark"] .btn-icon:hover[b-c6p61huxn8] {
    background-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .filter-select[b-c6p61huxn8],
[data-theme="dark"] .search-input[b-c6p61huxn8] {
    background-color: #333;
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .loading-spinner[b-c6p61huxn8] {
    border-color: rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .campaigns-list[b-c6p61huxn8] {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .campaigns-list[b-c6p61huxn8] {
        grid-template-columns: 1fr;
    }

    .filter-container[b-c6p61huxn8] {
        flex-direction: column;
        gap: 8px;
    }

    .search-input[b-c6p61huxn8] {
        width: 100%;
    }

    .card-actions[b-c6p61huxn8] {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .form-row[b-c6p61huxn8] {
        flex-direction: column;
        gap: 8px;
    }

    .form-group-half[b-c6p61huxn8] {
        margin-bottom: 16px;
    }
}


/**NEW START*/

/* AdminCampaigns.razor.css */

.campaigns-container[b-c6p61huxn8] {
    padding: 0;
}

.table-responsive[b-c6p61huxn8] {
    overflow-x: auto;
}

.campaign-table[b-c6p61huxn8] {
    width: 100%;
    border-collapse: collapse;
}

    .campaign-table th[b-c6p61huxn8] {
        background-color: var(--table-header-background);
        padding: 12px 16px;
        text-align: left;
        font-weight: 500;
        color: var(--text-color);
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .campaign-table td[b-c6p61huxn8] {
        padding: 12px 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        vertical-align: middle;
    }

    .campaign-table tr:hover[b-c6p61huxn8] {
        background-color: rgba(0, 0, 0, 0.02);
    }

.date-range[b-c6p61huxn8] {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary-color);
    font-size: 0.9rem;
}

.campaign-status-badge[b-c6p61huxn8] {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

    .campaign-status-badge.active[b-c6p61huxn8] {
        background-color: rgba(76, 175, 80, 0.1);
        color: #4CAF50;
    }

    .campaign-status-badge.upcoming[b-c6p61huxn8] {
        background-color: rgba(255, 152, 0, 0.1);
        color: #FF9800;
    }

    .campaign-status-badge.completed[b-c6p61huxn8] {
        background-color: rgba(158, 158, 158, 0.1);
        color: #757575;
    }

.progress-bar-container[b-c6p61huxn8] {
    width: 100%;
    height: 6px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.progress-bar[b-c6p61huxn8] {
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 3px;
}

.progress-text[b-c6p61huxn8] {
    position: absolute;
    top: -18px;
    right: 0;
    font-size: 0.75rem;
    color: var(--text-secondary-color);
}

.stat-number[b-c6p61huxn8] {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.actions-cell[b-c6p61huxn8] {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
}

.search-box[b-c6p61huxn8] {
    position: relative;
    margin-right: 16px;
}

.search-icon[b-c6p61huxn8] {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary-color);
}

.search-input[b-c6p61huxn8] {
    padding: 8px 12px 8px 32px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    width: 250px;
    background-color: var(--surface-color);
    color: var(--text-color);
}

.filter-container[b-c6p61huxn8] {
    display: flex;
    gap: 16px;
}

.card-actions[b-c6p61huxn8] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.pagination[b-c6p61huxn8] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.page-info[b-c6p61huxn8] {
    margin: 0 16px;
    color: var(--text-secondary-color);
    font-size: 0.9rem;
}

/* Modal styles */
.modal-backdrop[b-c6p61huxn8] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal[b-c6p61huxn8] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1010;
}

.modal-content[b-c6p61huxn8] {
    /*min-height:35rem;*//*
    max-height:35rem;*/
    background-color: var(--surface-color);
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    /**/
}

@keyframes modalFadeIn-b-c6p61huxn8 {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header[b-c6p61huxn8] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

    .modal-header h3[b-c6p61huxn8] {
        color: var(--primary-dark-color);
        margin: 0;
        font-size: 1.2rem;
    }

.close-button[b-c6p61huxn8] {
    background: transparent;
    border: none;
    color: var(--text-secondary-color);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
}

.modal-body[b-c6p61huxn8] {
    padding: 20px;
}

.modal-footer[b-c6p61huxn8] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.form-group[b-c6p61huxn8] {
    margin-bottom: 16px;
}

.form-row[b-c6p61huxn8] {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group-half[b-c6p61huxn8] {
    flex: 1;
}

.form-group label[b-c6p61huxn8] {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control[b-c6p61huxn8] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    background-color: var(--surface-color);
    color: var(--text-color);
    font-size: 1rem;
}

    .form-control:focus[b-c6p61huxn8] {
        border-color: var(--primary-color);
        outline: none;
        box-shadow: 0 0 0 2px rgba(28, 169, 201, 0.2);
    }

.form-checkbox[b-c6p61huxn8] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

    .form-checkbox input[type="checkbox"][b-c6p61huxn8] {
        width: 16px;
        height: 16px;
    }

.text-danger[b-c6p61huxn8] {
    color: var(--error-color);
}

/* Loading styles */
.loading-container[b-c6p61huxn8] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
}

.loading-spinner[b-c6p61huxn8] {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 4px solid var(--primary-color);
    animation: spin-b-c6p61huxn8 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin-b-c6p61huxn8 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.no-data[b-c6p61huxn8] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
    color: var(--text-secondary-color);
}

    .no-data i[b-c6p61huxn8] {
        font-size: 3rem;
        margin-bottom: 16px;
        opacity: 0.5;
    }

/* Button styles */
.btn[b-c6p61huxn8] {
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary[b-c6p61huxn8] {
    background-color: var(--primary-color);
    color: white;
}

    .btn-primary:hover[b-c6p61huxn8] {
        background-color: var(--primary-dark-color);
    }

.btn-secondary[b-c6p61huxn8] {
    background-color: #f0f0f0;
    color: var(--text-color);
}

    .btn-secondary:hover[b-c6p61huxn8] {
        background-color: #e0e0e0;
    }

.btn-danger[b-c6p61huxn8] {
    background-color: var(--error-color);
    color: white;
}

    .btn-danger:hover[b-c6p61huxn8] {
        background-color: #d32f2f;
    }

.btn-icon[b-c6p61huxn8] {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--text-secondary-color);
    border-radius: var(--border-radius);
}

    .btn-icon:hover[b-c6p61huxn8] {
        background-color: rgba(0, 0, 0, 0.05);
        color: var(--primary-color);
    }

    .btn-icon.danger[b-c6p61huxn8] {
        color: var(--error-color);
    }

        .btn-icon.danger:hover[b-c6p61huxn8] {
            background-color: rgba(244, 67, 54, 0.1);
        }

/* Dark Mode adjustments */
[data-theme="dark"] .campaign-table tr:hover[b-c6p61huxn8] {
    background-color: rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .campaign-table td[b-c6p61huxn8] {
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .progress-bar-container[b-c6p61huxn8] {
    background-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .form-control[b-c6p61huxn8] {
    background-color: #333;
    border-color: rgba(255, 255, 255, 0.1);
}

    [data-theme="dark"] .form-control:focus[b-c6p61huxn8] {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 2px rgba(28, 169, 201, 0.3);
    }

[data-theme="dark"] .btn-secondary[b-c6p61huxn8] {
    background-color: #333;
}

    [data-theme="dark"] .btn-secondary:hover[b-c6p61huxn8] {
        background-color: #444;
    }

[data-theme="dark"] .btn-icon:hover[b-c6p61huxn8] {
    background-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .search-input[b-c6p61huxn8] {
    background-color: #333;
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .loading-spinner[b-c6p61huxn8] {
    border-color: rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .campaign-table th:nth-child(5)[b-c6p61huxn8],
    .campaign-table td:nth-child(5)[b-c6p61huxn8],
    .campaign-table th:nth-child(6)[b-c6p61huxn8],
    .campaign-table td:nth-child(6)[b-c6p61huxn8] {
        display: none;
    }
}

@media (max-width: 768px) {
    .campaign-table th:nth-child(7)[b-c6p61huxn8],
    .campaign-table td:nth-child(7)[b-c6p61huxn8] {
        display: none;
    }

    .card-actions[b-c6p61huxn8] {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .search-box[b-c6p61huxn8] {
        margin-right: 0;
        margin-bottom: 8px;
    }

    .search-input[b-c6p61huxn8] {
        width: 100%;
    }

    .form-row[b-c6p61huxn8] {
        flex-direction: column;
        gap: 0;
    }

    .form-group-half[b-c6p61huxn8] {
        margin-bottom: 16px;
    }
}

@media (max-width: 576px) {
    .campaign-table th:nth-child(4)[b-c6p61huxn8],
    .campaign-table td:nth-child(4)[b-c6p61huxn8] {
        display: none;
    }
}
/* Common Table Styling to Apply to All Pages */

/* Table Container Fixes */
.table-responsive[b-c6p61huxn8] {
    width: 100%;
    height: 100%;
    overflow: auto !important;
}

/* Fix for AdminLayout scrolling issue */
.admin-main[b-c6p61huxn8] {
    overflow: auto !important;
    display: flex;
    flex-direction: column;
    position: relative !important; /* Change from fixed to relative */
}

/* Match-table styling consistent with AdminUsers */
.match-table[b-c6p61huxn8] {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    font-size: 0.95rem;
    border-spacing: 0;
    background-color: var(--surface-color);
}

    .match-table th[b-c6p61huxn8] {
        background-color: var(--table-header-background);
        color: var(--text-color);
        text-align: left;
        padding: 1rem 0.875rem !important;
        font-weight: 400;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        border: none;
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .match-table td[b-c6p61huxn8] {
        padding: 1.125rem 0.875rem !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
        vertical-align: middle;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .match-table tbody tr:hover[b-c6p61huxn8] {
        background-color: rgba(33, 150, 243, 0.05);
        cursor: pointer;
    }

/* Actions column styling */
.actions-cell[b-c6p61huxn8] {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    justify-content: flex-end !important;
}

/* Status indicator styling */
.status-indicator[b-c6p61huxn8] {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px;
}

    .status-indicator.active[b-c6p61huxn8] {
        background-color: var(--success-color);
    }

    .status-indicator.inactive[b-c6p61huxn8],
    .status-indicator.cancelled[b-c6p61huxn8] {
        background-color: var(--error-color);
    }

    .status-indicator.planned[b-c6p61huxn8] {
        background-color: rgba(76, 175, 80, 0.7);
    }

    .status-indicator.finished[b-c6p61huxn8] {
        background-color: rgba(33, 150, 243, 0.7);
    }

    .status-indicator.postponed[b-c6p61huxn8] {
        background-color: rgba(255, 152, 0, 0.7);
    }

/* Fix icon alignment */
.btn-icon[b-c6p61huxn8] {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--text-secondary-color);
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
}

    .btn-icon:hover[b-c6p61huxn8] {
        background-color: rgba(0, 0, 0, 0.05);
        color: var(--primary-color);
    }

    .btn-icon.danger[b-c6p61huxn8] {
        color: var(--error-color);
    }

        .btn-icon.danger:hover[b-c6p61huxn8] {
            background-color: rgba(244, 67, 54, 0.1);
        }

/* Dark mode adjustments */
[data-theme="dark"] .match-table tr:hover[b-c6p61huxn8] {
    background-color: rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .match-table td[b-c6p61huxn8] {
    border-bottom-color: rgba(255, 255, 255, 0.05) !important;
}

/* Media queries for responsive tables */
@media (max-width: 768px) {
    .card-actions[b-c6p61huxn8] {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .search-box[b-c6p61huxn8] {
        margin-right: 0;
        margin-bottom: 8px;
        width: 100%;
    }

    .search-input[b-c6p61huxn8] {
        width: 100%;
    }
}

/* Additional CSS to be added to the existing CSS files for consistent delete button styling */

.btn-danger[b-c6p61huxn8] {
    background-color: #dc3545;
    color: white;
    border: none;
}

    .btn-danger:hover[b-c6p61huxn8] {
        background-color: #c82333;
    }

/* Ensure the trash icon button in modal footer has proper spacing and styling */
.modal-footer .btn[b-c6p61huxn8] {
    margin-left: 8px;
}

    .modal-footer .btn:first-child[b-c6p61huxn8] {
        margin-left: 0;
        margin-right: auto;
    }

    /* Style for the standalone trash button (first button in footer when editing) */
    .modal-footer .btn.btn-secondary:first-child[b-c6p61huxn8] {
        background-color: #6c757d;
        color: white;
    }

        .modal-footer .btn.btn-secondary:first-child:hover[b-c6p61huxn8] {
            background-color: #5a6268;
        }

@media (max-width: 768px) {
    thead th:last-child[b-c6p61huxn8] {
        width: 2rem !important;
        max-width: 2rem !important;
        min-width: 2rem !important;
    }
}
/* _content/SimpliMed.PWA.TippMeister/Components/Pages/AdminMatches.razor.rz.scp.css */
/* AdminMatches.razor.css */

.matches-container[b-vc9mufpckb] {
    padding: 0;
}

.table-responsive[b-vc9mufpckb] {
    overflow-x: auto;
}

.table[b-vc9mufpckb] {
    width: 100%;
    border-collapse: collapse;
}

    .table th[b-vc9mufpckb] {
        background-color: var(--table-header-background);
        padding: 12px 16px;
        text-align: left;
        font-weight: 500;
        color: var(--text-color);
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .table td[b-vc9mufpckb] {
        padding: 12px 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        vertical-align: middle;
    }

    .table tr:hover[b-vc9mufpckb] {
        background-color: rgba(0, 0, 0, 0.02);
    }

.team-cell[b-vc9mufpckb] {
    display: flex;
    align-items: center;
    max-width: 200px;
}

.team-logo[b-vc9mufpckb] {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 1.2rem;
}

.team-logo-large[b-vc9mufpckb] {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    font-size: 1.8rem;
}

.score-cell[b-vc9mufpckb] {
    text-align: center;
    padding: 0 16px;
    width: 80px;
}

.match-score[b-vc9mufpckb] {
    font-weight: 600;
    font-size: 1.1rem;
}

.match-vs[b-vc9mufpckb] {
    color: var(--text-secondary-color);
    font-weight: 500;
}

.match-status[b-vc9mufpckb] {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

    .match-status.planned[b-vc9mufpckb] {
        background-color: rgba(76, 175, 80, 0.1);
        color: #4CAF50;
    }

    .match-status.finished[b-vc9mufpckb] {
        background-color: rgba(33, 150, 243, 0.1);
        color: #2196F3;
    }

    .match-status.cancelled[b-vc9mufpckb] {
        background-color: rgba(244, 67, 54, 0.1);
        color: #F44336;
    }

    .match-status.postponed[b-vc9mufpckb] {
        background-color: rgba(255, 152, 0, 0.1);
        color: #FF9800;
    }

.actions-cell[b-vc9mufpckb] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-container[b-vc9mufpckb] {
    display: flex;
    gap: 16px;
    margin-right: 16px;
}

.filter-select[b-vc9mufpckb] {
    padding: 8px 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    background-color: var(--surface-color);
    color: var(--text-color);
    min-width: 150px;
}

.search-box[b-vc9mufpckb] {
    position: relative;
}

.search-icon[b-vc9mufpckb] {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary-color);
}

.search-input[b-vc9mufpckb] {
    padding: 8px 12px 8px 32px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    width: 250px;
    background-color: var(--surface-color);
    color: var(--text-color);
}

.card-actions[b-vc9mufpckb] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.pagination[b-vc9mufpckb] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.page-info[b-vc9mufpckb] {
    margin: 0 16px;
    color: var(--text-secondary-color);
    font-size: 0.9rem;
}

/* Modal styles */
.modal-backdrop[b-vc9mufpckb] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal[b-vc9mufpckb] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1010;
}

.modal-content[b-vc9mufpckb] {
    background-color: var(--surface-color);
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    
}

@keyframes modalFadeIn-b-vc9mufpckb {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header[b-vc9mufpckb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

    .modal-header h3[b-vc9mufpckb] {
        color: var(--primary-dark-color);
        margin: 0;
        font-size: 1.2rem;
    }

.close-button[b-vc9mufpckb] {
    background: transparent;
    border: none;
    color: var(--text-secondary-color);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
}

.modal-body[b-vc9mufpckb] {
    padding: 20px;
}

.modal-footer[b-vc9mufpckb] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.form-group[b-vc9mufpckb] {
    margin-bottom: 16px;
}

.form-row[b-vc9mufpckb] {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group-half[b-vc9mufpckb] {
    flex: 1;
    margin-bottom: 0;
}

.form-group label[b-vc9mufpckb] {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control[b-vc9mufpckb] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    background-color: var(--surface-color);
    color: var(--text-color);
    font-size: 1rem;
}

    .form-control:focus[b-vc9mufpckb] {
        border-color: var(--primary-color);
        outline: none;
        box-shadow: 0 0 0 2px rgba(28, 169, 201, 0.2);
    }

/* Match teams for result modal */
.match-teams[b-vc9mufpckb] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.match-team[b-vc9mufpckb] {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px;
}

.team-name[b-vc9mufpckb] {
    text-align: center;
    font-weight: 500;
    margin-top: 8px;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.score-inputs[b-vc9mufpckb] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.score-input[b-vc9mufpckb] {
    width: 64px;
    height: 64px;
    font-size: 2rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    background-color: var(--surface-color);
    color: var(--text-color);
}

.score-separator[b-vc9mufpckb] {
    font-size: 2rem;
    font-weight: 500;
}

/* Loading styles */
.loading-container[b-vc9mufpckb] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
}

.loading-spinner[b-vc9mufpckb] {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 4px solid var(--primary-color);
    animation: spin-b-vc9mufpckb 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin-b-vc9mufpckb {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.no-data[b-vc9mufpckb] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
    color: var(--text-secondary-color);
}

    .no-data i[b-vc9mufpckb] {
        font-size: 3rem;
        margin-bottom: 16px;
        opacity: 0.5;
    }

/* Button styles */
.btn[b-vc9mufpckb] {
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary[b-vc9mufpckb] {
    background-color: var(--primary-color);
    color: white;
}

    .btn-primary:hover[b-vc9mufpckb] {
        background-color: var(--primary-dark-color);
    }

.btn-secondary[b-vc9mufpckb] {
    background-color: #f0f0f0;
    color: var(--text-color);
}

    .btn-secondary:hover[b-vc9mufpckb] {
        background-color: #e0e0e0;
    }

.btn-icon[b-vc9mufpckb] {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--text-secondary-color);
    border-radius: var(--border-radius);
}

    .btn-icon:hover[b-vc9mufpckb] {
        background-color: rgba(0, 0, 0, 0.05);
        color: var(--primary-color);
    }

    .btn-icon.danger[b-vc9mufpckb] {
        color: var(--error-color);
    }

        .btn-icon.danger:hover[b-vc9mufpckb] {
            background-color: rgba(244, 67, 54, 0.1);
        }

/* Dark Mode adjustments */
[data-theme="dark"] .table tr:hover[b-vc9mufpckb] {
    background-color: rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .form-control[b-vc9mufpckb],
[data-theme="dark"] .filter-select[b-vc9mufpckb],
[data-theme="dark"] .search-input[b-vc9mufpckb],
[data-theme="dark"] .score-input[b-vc9mufpckb] {
    background-color: #333;
    border-color: rgba(255, 255, 255, 0.1);
}

    [data-theme="dark"] .form-control:focus[b-vc9mufpckb] {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 2px rgba(28, 169, 201, 0.3);
    }

[data-theme="dark"] .btn-secondary[b-vc9mufpckb] {
    background-color: #333;
}

    [data-theme="dark"] .btn-secondary:hover[b-vc9mufpckb] {
        background-color: #444;
    }

[data-theme="dark"] .btn-icon:hover[b-vc9mufpckb] {
    background-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .loading-spinner[b-vc9mufpckb] {
    border-color: rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary-color);
}

[data-theme="dark"] .table td[b-vc9mufpckb] {
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .filter-container[b-vc9mufpckb] {
        flex-direction: column;
        gap: 8px;
    }

    .search-input[b-vc9mufpckb] {
        width: 100%;
    }

    .card-actions[b-vc9mufpckb] {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .form-row[b-vc9mufpckb] {
        flex-direction: column;
        gap: 8px;
    }

    .match-teams[b-vc9mufpckb] {
        flex-direction: column;
        gap: 16px;
    }

    .score-inputs[b-vc9mufpckb] {
        order: 3;
        margin-top: 16px;
    }

    .onboarding-hint[b-vc9mufpckb] {
        flex-direction: column;
        text-align: center;
    }

    .oh-desc-desktop[b-vc9mufpckb] {
        display:none;
    }

    .oh-desc-mobile[b-vc9mufpckb] {
        display:block;
    }
}

.oh-desc-desktop[b-vc9mufpckb] {
    display: block;
}

.oh-desc-mobile[b-vc9mufpckb] {
    display:none;
}

/* Common Table Styling to Apply to All Pages */

/* Table Container Fixes */
.table-responsive[b-vc9mufpckb] {
    width: 100%;
    height: 100%;
    overflow: auto !important;
}

/* Fix for AdminLayout scrolling issue */
.admin-main[b-vc9mufpckb] {
    overflow: auto !important;
    display: flex;
    flex-direction: column;
    position: relative !important; /* Change from fixed to relative */
}

/* Match-table styling consistent with AdminUsers */
.match-table[b-vc9mufpckb] {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    font-size: 0.95rem;
    border-spacing: 0;
    background-color: var(--surface-color);
}

    .match-table th[b-vc9mufpckb] {
        background-color: var(--table-header-background);
        color: var(--text-color);
        text-align: left;
        padding: 1rem 0.875rem !important;
        font-weight: 400;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        border: none;
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .match-table td[b-vc9mufpckb] {
        padding: 1.125rem 0.875rem !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
        vertical-align: middle;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .match-table tbody tr:hover[b-vc9mufpckb] {
        background-color: rgba(33, 150, 243, 0.05);
        cursor: pointer;
    }

/* Actions column styling */
.actions-cell[b-vc9mufpckb] {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    justify-content: flex-end !important;
}

/* Status indicator styling */
.status-indicator[b-vc9mufpckb] {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px;
}

    .status-indicator.active[b-vc9mufpckb] {
        background-color: var(--success-color);
    }

    .status-indicator.inactive[b-vc9mufpckb],
    .status-indicator.cancelled[b-vc9mufpckb] {
        background-color: var(--error-color);
    }

    .status-indicator.planned[b-vc9mufpckb] {
        background-color: rgba(76, 175, 80, 0.7);
    }

    .status-indicator.finished[b-vc9mufpckb] {
        background-color: rgba(33, 150, 243, 0.7);
    }

    .status-indicator.postponed[b-vc9mufpckb] {
        background-color: rgba(255, 152, 0, 0.7);
    }

/* Fix icon alignment */
.btn-icon[b-vc9mufpckb] {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--text-secondary-color);
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
}

    .btn-icon:hover[b-vc9mufpckb] {
        background-color: rgba(0, 0, 0, 0.05);
        color: var(--primary-color);
    }

    .btn-icon.danger[b-vc9mufpckb] {
        color: var(--error-color);
    }

        .btn-icon.danger:hover[b-vc9mufpckb] {
            background-color: rgba(244, 67, 54, 0.1);
        }

/* Dark mode adjustments */
[data-theme="dark"] .match-table tr:hover[b-vc9mufpckb] {
    background-color: rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .match-table td[b-vc9mufpckb] {
    border-bottom-color: rgba(255, 255, 255, 0.05) !important;
}

/* Media queries for responsive tables */
@media (max-width: 768px) {
    .card-actions[b-vc9mufpckb] {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .search-box[b-vc9mufpckb] {
        margin-right: 0;
        margin-bottom: 8px;
        width: 100%;
    }

    .search-input[b-vc9mufpckb] {
        width: 100%;
    }
}

@media (max-width: 768px) {
    thead th:last-child[b-vc9mufpckb] {
        width: 2rem !important;
        max-width: 2rem !important;
        min-width: 2rem !important;
    }
}
/* _content/SimpliMed.PWA.TippMeister/Components/Pages/AdminOrganizations.razor.rz.scp.css */
/* AdminOrganizations.razor.css */

.organizations-container[b-yp6i73kx5g] {
    padding: 0;
}

.table-responsive[b-yp6i73kx5g] {
    overflow-x: auto;
}

.table[b-yp6i73kx5g] {
    width: 100%;
    border-collapse: collapse;
}

    .table th[b-yp6i73kx5g] {
        background-color: var(--table-header-background);
        padding: 12px 16px;
        text-align: left;
        font-weight: 500;
        color: var(--text-color);
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .table td[b-yp6i73kx5g] {
        padding: 12px 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        vertical-align: middle;
    }

    .table tr:hover[b-yp6i73kx5g] {
        background-color: rgba(0, 0, 0, 0.02);
    }

.organization-name-cell[b-yp6i73kx5g] {
    display: flex;
    align-items: center;
}

.organization-avatar[b-yp6i73kx5g] {
    width: 36px;
    height: 36px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 1rem;
    overflow: hidden;
}

    .organization-avatar img[b-yp6i73kx5g] {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.organization-avatar-upload[b-yp6i73kx5g] {
    margin-bottom: 24px;
    max-width: 180px;
    margin-left: auto;
    margin-right: auto;
}

.status-indicator[b-yp6i73kx5g] {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px;
}

    .status-indicator.active[b-yp6i73kx5g] {
        background-color: var(--success-color);
    }

    .status-indicator.inactive[b-yp6i73kx5g] {
        background-color: var(--error-color);
    }

.actions-cell[b-yp6i73kx5g] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-box[b-yp6i73kx5g] {
    position: relative;
    margin-right: 16px;
}

.search-icon[b-yp6i73kx5g] {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary-color);
}

.search-input[b-yp6i73kx5g] {
    padding: 8px 12px 8px 32px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    width: 250px;
    background-color: var(--surface-color);
    color: var(--text-color);
}

.card-actions[b-yp6i73kx5g] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.pagination[b-yp6i73kx5g] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.page-info[b-yp6i73kx5g] {
    margin: 0 16px;
    color: var(--text-secondary-color);
    font-size: 0.9rem;
}

/* Modal styles */
.modal-backdrop[b-yp6i73kx5g] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal[b-yp6i73kx5g] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1010;
}

.modal-content[b-yp6i73kx5g] {
    background-color: var(--surface-color);
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes modalFadeIn-b-yp6i73kx5g {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header[b-yp6i73kx5g] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    background-color: var(--surface-color);
    z-index: 1;
}

    .modal-header h3[b-yp6i73kx5g] {
        color: var(--primary-dark-color);
        margin: 0;
        font-size: 1.2rem;
    }

.close-button[b-yp6i73kx5g] {
    background: transparent;
    border: none;
    color: var(--text-secondary-color);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
}

.modal-body[b-yp6i73kx5g] {
    padding: 20px;
}

.modal-footer[b-yp6i73kx5g] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    position: sticky;
    bottom: 0;
    background-color: var(--surface-color);
    z-index: 1;
}

.form-group[b-yp6i73kx5g] {
    margin-bottom: 16px;
}

    .form-group label[b-yp6i73kx5g] {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
    }

.form-control[b-yp6i73kx5g] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    background-color: var(--surface-color);
    color: var(--text-color);
    font-size: 1rem;
}

    .form-control:focus[b-yp6i73kx5g] {
        border-color: var(--primary-color);
        outline: none;
        box-shadow: 0 0 0 2px rgba(28, 169, 201, 0.2);
    }

.form-section-title[b-yp6i73kx5g] {
    font-weight: 500;
    color: var(--primary-color);
    margin: 20px 0 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

/* Toggle switch */
.toggle-switch[b-yp6i73kx5g] {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

    .toggle-switch input[b-yp6i73kx5g] {
        opacity: 0;
        width: 0;
        height: 0;
    }

.toggle-slider[b-yp6i73kx5g] {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

    .toggle-slider[b-yp6i73kx5g]:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 3px;
        bottom: 3px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
    }

input:checked + .toggle-slider[b-yp6i73kx5g] {
    background-color: var(--primary-color);
}

    input:checked + .toggle-slider[b-yp6i73kx5g]:before {
        transform: translateX(22px);
    }

/* Form row for multiple inputs in a row */
.form-row[b-yp6i73kx5g] {
    display: flex;
    gap: 16px;
    margin-bottom: 0;
}

.form-group-half[b-yp6i73kx5g] {
    flex: 1;
    min-width: 0;
}

.form-group-third[b-yp6i73kx5g] {
    flex: 1;
    min-width: 0;
}

/* Loading styles */
.loading-container[b-yp6i73kx5g] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
}

.loading-spinner[b-yp6i73kx5g] {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 4px solid var(--primary-color);
    animation: spin-b-yp6i73kx5g 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin-b-yp6i73kx5g {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.no-data[b-yp6i73kx5g] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
    color: var(--text-secondary-color);
}

    .no-data i[b-yp6i73kx5g] {
        font-size: 3rem;
        margin-bottom: 16px;
        opacity: 0.5;
    }

/* Button styles */
.btn[b-yp6i73kx5g] {
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary[b-yp6i73kx5g] {
    background-color: var(--primary-color);
    color: white;
}

    .btn-primary:hover[b-yp6i73kx5g] {
        background-color: var(--primary-dark-color);
    }

.btn-secondary[b-yp6i73kx5g] {
    background-color: #f0f0f0;
    color: var(--text-color);
}

    .btn-secondary:hover[b-yp6i73kx5g] {
        background-color: #e0e0e0;
    }

.btn-icon[b-yp6i73kx5g] {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--text-secondary-color);
    border-radius: var(--border-radius);
}

    .btn-icon:hover[b-yp6i73kx5g] {
        background-color: rgba(0, 0, 0, 0.05);
        color: var(--primary-color);
    }

    .btn-icon.danger[b-yp6i73kx5g] {
        color: var(--error-color);
    }

        .btn-icon.danger:hover[b-yp6i73kx5g] {
            background-color: rgba(244, 67, 54, 0.1);
        }

/* Dark Mode adjustments */
[data-theme="dark"] .table tr:hover[b-yp6i73kx5g] {
    background-color: rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .form-control[b-yp6i73kx5g] {
    background-color: #333;
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .btn-secondary[b-yp6i73kx5g] {
    background-color: #333;
}

    [data-theme="dark"] .btn-secondary:hover[b-yp6i73kx5g] {
        background-color: #444;
    }

[data-theme="dark"] .btn-icon:hover[b-yp6i73kx5g] {
    background-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .search-input[b-yp6i73kx5g] {
    background-color: #333;
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .loading-spinner[b-yp6i73kx5g] {
    border-color: rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary-color);
}

[data-theme="dark"] .table td[b-yp6i73kx5g] {
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .form-section-title[b-yp6i73kx5g] {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-row[b-yp6i73kx5g] {
        flex-direction: column;
        gap: 0;
    }

    .card-actions[b-yp6i73kx5g] {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .search-box[b-yp6i73kx5g] {
        margin-right: 0;
        margin-bottom: 8px;
    }

    .search-input[b-yp6i73kx5g] {
        width: 100%;
    }
}

/* Common Table Styling to Apply to All Pages */

/* Table Container Fixes */
.table-responsive[b-yp6i73kx5g] {
    width: 100%;
    height: 100%;
    overflow: auto !important;
}

/* Fix for AdminLayout scrolling issue */
.admin-main[b-yp6i73kx5g] {
    overflow: auto !important;
    display: flex;
    flex-direction: column;
    position: relative !important; /* Change from fixed to relative */
}

/* Match-table styling consistent with AdminUsers */
.match-table[b-yp6i73kx5g] {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    font-size: 0.95rem;
    border-spacing: 0;
    background-color: var(--surface-color);
}

    .match-table th[b-yp6i73kx5g] {
        background-color: var(--table-header-background);
        color: var(--text-color);
        text-align: left;
        padding: 1rem 0.875rem !important;
        font-weight: 400;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        border: none;
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .match-table td[b-yp6i73kx5g] {
        padding: 1.125rem 0.875rem !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
        vertical-align: middle;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .match-table tbody tr:hover[b-yp6i73kx5g] {
        background-color: rgba(33, 150, 243, 0.05);
        cursor: pointer;
    }

/* Actions column styling */
.actions-cell[b-yp6i73kx5g] {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    justify-content: flex-end !important;
}

/* Status indicator styling */
.status-indicator[b-yp6i73kx5g] {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px;
}

    .status-indicator.active[b-yp6i73kx5g] {
        background-color: var(--success-color);
    }

    .status-indicator.inactive[b-yp6i73kx5g],
    .status-indicator.cancelled[b-yp6i73kx5g] {
        background-color: var(--error-color);
    }

    .status-indicator.planned[b-yp6i73kx5g] {
        background-color: rgba(76, 175, 80, 0.7);
    }

    .status-indicator.finished[b-yp6i73kx5g] {
        background-color: rgba(33, 150, 243, 0.7);
    }

    .status-indicator.postponed[b-yp6i73kx5g] {
        background-color: rgba(255, 152, 0, 0.7);
    }

/* Fix icon alignment */
.btn-icon[b-yp6i73kx5g] {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--text-secondary-color);
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
}

    .btn-icon:hover[b-yp6i73kx5g] {
        background-color: rgba(0, 0, 0, 0.05);
        color: var(--primary-color);
    }

    .btn-icon.danger[b-yp6i73kx5g] {
        color: var(--error-color);
    }

        .btn-icon.danger:hover[b-yp6i73kx5g] {
            background-color: rgba(244, 67, 54, 0.1);
        }

/* Dark mode adjustments */
[data-theme="dark"] .match-table tr:hover[b-yp6i73kx5g] {
    background-color: rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .match-table td[b-yp6i73kx5g] {
    border-bottom-color: rgba(255, 255, 255, 0.05) !important;
}

/* Media queries for responsive tables */
@media (max-width: 768px) {
    .card-actions[b-yp6i73kx5g] {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .search-box[b-yp6i73kx5g] {
        margin-right: 0;
        margin-bottom: 8px;
        width: 100%;
    }

    .search-input[b-yp6i73kx5g] {
        width: 100%;
    }
}

/* Additional CSS to be added to the existing CSS files for consistent delete button styling */

.btn-danger[b-yp6i73kx5g] {
    background-color: #dc3545;
    color: white;
    border: none;
}

    .btn-danger:hover[b-yp6i73kx5g] {
        background-color: #c82333;
    }

/* Ensure the trash icon button in modal footer has proper spacing and styling */
.modal-footer .btn[b-yp6i73kx5g] {
    margin-left: 8px;
}

    .modal-footer .btn:first-child[b-yp6i73kx5g] {
        margin-left: 0;
        margin-right: auto;
    }

    /* Style for the standalone trash button (first button in footer when editing) */
    .modal-footer .btn.btn-secondary:first-child[b-yp6i73kx5g] {
        background-color: #6c757d;
        color: white;
    }

        .modal-footer .btn.btn-secondary:first-child:hover[b-yp6i73kx5g] {
            background-color: #5a6268;
        }

@media (max-width: 768px) {
    thead th:last-child[b-yp6i73kx5g] {
        width: 2rem !important;
        max-width: 2rem !important;
        min-width: 2rem !important;
    }
}
/* _content/SimpliMed.PWA.TippMeister/Components/Pages/AdminSports.razor.rz.scp.css */
/* AdminSports.razor.css */

.sports-container[b-icfcz1yo8r] {
    padding: 0;
}

.table-responsive[b-icfcz1yo8r] {
    overflow-x: auto;
}

.table[b-icfcz1yo8r] {
    width: 100%;
    border-collapse: collapse;
}

    .table th[b-icfcz1yo8r] {
        background-color: var(--table-header-background);
        padding: 12px 16px;
        text-align: left;
        font-weight: 500;
        color: var(--text-color);
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .table td[b-icfcz1yo8r] {
        padding: 12px 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        vertical-align: middle;
    }

    .table tr:hover[b-icfcz1yo8r] {
        background-color: rgba(0, 0, 0, 0.02);
    }

.status-indicator[b-icfcz1yo8r] {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px;
}

    .status-indicator.active[b-icfcz1yo8r] {
        background-color: var(--success-color);
    }

    .status-indicator.inactive[b-icfcz1yo8r] {
        background-color: var(--error-color);
    }

.actions-cell[b-icfcz1yo8r] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.color-preview[b-icfcz1yo8r] {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: inline-block;
}

.color-picker-container[b-icfcz1yo8r] {
    display: flex;
    align-items: center;
    gap: 10px;
}

.color-picker[b-icfcz1yo8r] {
    width: 60px;
    height: 32px;
    padding: 0;
    border: none;
    cursor: pointer;
}

.search-box[b-icfcz1yo8r] {
    position: relative;
    margin-right: 16px;
}

.search-icon[b-icfcz1yo8r] {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary-color);
}

.search-input[b-icfcz1yo8r] {
    padding: 8px 12px 8px 32px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    width: 250px;
    background-color: var(--surface-color);
    color: var(--text-color);
}

.card-actions[b-icfcz1yo8r] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

.pagination[b-icfcz1yo8r] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.page-info[b-icfcz1yo8r] {
    margin: 0 16px;
    color: var(--text-secondary-color);
    font-size: 0.9rem;
}

/* Modal styles */
.modal-backdrop[b-icfcz1yo8r] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal[b-icfcz1yo8r] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1010;
}

.modal-content[b-icfcz1yo8r] {
    background-color: var(--surface-color);
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes modalFadeIn-b-icfcz1yo8r {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header[b-icfcz1yo8r] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    background-color: var(--surface-color);
    z-index: 1;
}

    .modal-header h3[b-icfcz1yo8r] {
        color: var(--primary-dark-color);
        margin: 0;
        font-size: 1.2rem;
    }

.close-button[b-icfcz1yo8r] {
    background: transparent;
    border: none;
    color: var(--text-secondary-color);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
}

.modal-body[b-icfcz1yo8r] {
    padding: 20px;
}

.modal-footer[b-icfcz1yo8r] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    position: sticky;
    bottom: 0;
    background-color: var(--surface-color);
    z-index: 1;
}

.form-group[b-icfcz1yo8r] {
    margin-bottom: 16px;
}

    .form-group label[b-icfcz1yo8r] {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
    }

.form-control[b-icfcz1yo8r] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    background-color: var(--surface-color);
    color: var(--text-color);
    font-size: 1rem;
}

    .form-control:focus[b-icfcz1yo8r] {
        border-color: var(--primary-color);
        outline: none;
        box-shadow: 0 0 0 2px rgba(28, 169, 201, 0.2);
    }

/* Toggle switch */
.toggle-switch[b-icfcz1yo8r] {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

    .toggle-switch input[b-icfcz1yo8r] {
        opacity: 0;
        width: 0;
        height: 0;
    }

.toggle-slider[b-icfcz1yo8r] {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

    .toggle-slider[b-icfcz1yo8r]:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 3px;
        bottom: 3px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
    }

input:checked + .toggle-slider[b-icfcz1yo8r] {
    background-color: var(--primary-color);
}

    input:checked + .toggle-slider[b-icfcz1yo8r]:before {
        transform: translateX(22px);
    }

/* Loading styles */
.loading-container[b-icfcz1yo8r] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
}

.loading-spinner[b-icfcz1yo8r] {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 4px solid var(--primary-color);
    animation: spin-b-icfcz1yo8r 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin-b-icfcz1yo8r {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.no-data[b-icfcz1yo8r] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
    color: var(--text-secondary-color);
}

    .no-data i[b-icfcz1yo8r] {
        font-size: 3rem;
        margin-bottom: 16px;
        opacity: 0.5;
    }

/* Button styles */
.btn[b-icfcz1yo8r] {
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary[b-icfcz1yo8r] {
    background-color: var(--primary-color);
    color: white;
}

    .btn-primary:hover[b-icfcz1yo8r] {
        background-color: var(--primary-dark-color);
    }

.btn-secondary[b-icfcz1yo8r] {
    background-color: #f0f0f0;
    color: var(--text-color);
}

    .btn-secondary:hover[b-icfcz1yo8r] {
        background-color: #e0e0e0;
    }

.btn-icon[b-icfcz1yo8r] {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--text-secondary-color);
    border-radius: var(--border-radius);
}

    .btn-icon:hover[b-icfcz1yo8r] {
        background-color: rgba(0, 0, 0, 0.05);
        color: var(--primary-color);
    }

    .btn-icon.danger[b-icfcz1yo8r] {
        color: var(--error-color);
    }

        .btn-icon.danger:hover[b-icfcz1yo8r] {
            background-color: rgba(244, 67, 54, 0.1);
        }

/* Dark Mode adjustments */
[data-theme="dark"] .table tr:hover[b-icfcz1yo8r] {
    background-color: rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .form-control[b-icfcz1yo8r] {
    background-color: #333;
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .btn-secondary[b-icfcz1yo8r] {
    background-color: #333;
}

    [data-theme="dark"] .btn-secondary:hover[b-icfcz1yo8r] {
        background-color: #444;
    }

[data-theme="dark"] .btn-icon:hover[b-icfcz1yo8r] {
    background-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .search-input[b-icfcz1yo8r] {
    background-color: #333;
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .loading-spinner[b-icfcz1yo8r] {
    border-color: rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary-color);
}

[data-theme="dark"] .table td[b-icfcz1yo8r] {
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-actions[b-icfcz1yo8r] {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .search-box[b-icfcz1yo8r] {
        margin-right: 0;
        margin-bottom: 8px;
    }

    .search-input[b-icfcz1yo8r] {
        width: 100%;
    }
}

/* Common Table Styling to Apply to All Pages */

/* Table Container Fixes */
.table-responsive[b-icfcz1yo8r] {
    width: 100%;
    height: 100%;
    overflow: auto !important;
}

/* Fix for AdminLayout scrolling issue */
.admin-main[b-icfcz1yo8r] {
    overflow: auto !important;
    display: flex;
    flex-direction: column;
    position: relative !important; /* Change from fixed to relative */
}

/* Match-table styling consistent with AdminUsers */
.match-table[b-icfcz1yo8r] {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    font-size: 0.95rem;
    border-spacing: 0;
    background-color: var(--surface-color);
}

    .match-table th[b-icfcz1yo8r] {
        background-color: var(--table-header-background);
        color: var(--text-color);
        text-align: left;
        padding: 1rem 0.875rem !important;
        font-weight: 400;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        border: none;
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .match-table td[b-icfcz1yo8r] {
        padding: 1.125rem 0.875rem !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
        vertical-align: middle;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .match-table tbody tr:hover[b-icfcz1yo8r] {
        background-color: rgba(33, 150, 243, 0.05);
        cursor: pointer;
    }

/* Actions column styling */
.actions-cell[b-icfcz1yo8r] {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    justify-content: flex-end !important;
}

/* Status indicator styling */
.status-indicator[b-icfcz1yo8r] {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px;
}

    .status-indicator.active[b-icfcz1yo8r] {
        background-color: var(--success-color);
    }

    .status-indicator.inactive[b-icfcz1yo8r],
    .status-indicator.cancelled[b-icfcz1yo8r] {
        background-color: var(--error-color);
    }

    .status-indicator.planned[b-icfcz1yo8r] {
        background-color: rgba(76, 175, 80, 0.7);
    }

    .status-indicator.finished[b-icfcz1yo8r] {
        background-color: rgba(33, 150, 243, 0.7);
    }

    .status-indicator.postponed[b-icfcz1yo8r] {
        background-color: rgba(255, 152, 0, 0.7);
    }

/* Fix icon alignment */
.btn-icon[b-icfcz1yo8r] {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--text-secondary-color);
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
}

    .btn-icon:hover[b-icfcz1yo8r] {
        background-color: rgba(0, 0, 0, 0.05);
        color: var(--primary-color);
    }

    .btn-icon.danger[b-icfcz1yo8r] {
        color: var(--error-color);
    }

        .btn-icon.danger:hover[b-icfcz1yo8r] {
            background-color: rgba(244, 67, 54, 0.1);
        }

/* Dark mode adjustments */
[data-theme="dark"] .match-table tr:hover[b-icfcz1yo8r] {
    background-color: rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .match-table td[b-icfcz1yo8r] {
    border-bottom-color: rgba(255, 255, 255, 0.05) !important;
}

/* Media queries for responsive tables */
@media (max-width: 768px) {
    .card-actions[b-icfcz1yo8r] {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .search-box[b-icfcz1yo8r] {
        margin-right: 0;
        margin-bottom: 8px;
        width: 100%;
    }

    .search-input[b-icfcz1yo8r] {
        width: 100%;
    }
}

/* Additional CSS to be added to the existing CSS files for consistent delete button styling */

.btn-danger[b-icfcz1yo8r] {
    background-color: #dc3545;
    color: white;
    border: none;
}

    .btn-danger:hover[b-icfcz1yo8r] {
        background-color: #c82333;
    }

/* Ensure the trash icon button in modal footer has proper spacing and styling */
.modal-footer .btn[b-icfcz1yo8r] {
    margin-left: 8px;
}

    .modal-footer .btn:first-child[b-icfcz1yo8r] {
        margin-left: 0;
        margin-right: auto;
    }

    /* Style for the standalone trash button (first button in footer when editing) */
    .modal-footer .btn.btn-secondary:first-child[b-icfcz1yo8r] {
        background-color: #6c757d;
        color: white;
    }

        .modal-footer .btn.btn-secondary:first-child:hover[b-icfcz1yo8r] {
            background-color: #5a6268;
        }

@media (max-width: 768px) {
    thead th:last-child[b-icfcz1yo8r] {
        width: 2rem !important;
        max-width: 2rem !important;
        min-width: 2rem !important;
    }
}
/* _content/SimpliMed.PWA.TippMeister/Components/Pages/AdminTeams.razor.rz.scp.css */
/* AdminTeams.razor.css - Enhanced with Selection Functionality */

.teams-container[b-nl62wp1frp] {
    padding: 0;
}

/* Team Selection Styles */
.team-selected[b-nl62wp1frp] {
    background-color: rgba(28, 169, 201, 0.1) !important;
    border-left: 3px solid var(--primary-color) !important;
}

.selected-teams-toolbar[b-nl62wp1frp] {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--surface-color);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.1);
    animation: slideUp-b-nl62wp1frp 0.1s ease;
}

@keyframes slideUp-b-nl62wp1frp {
    from {
        opacity: 0;
        /*transform: translateX(-50%) translateY(100%);*/
    }

    to {
        opacity: 1;
        /*transform: translateX(-50%) translateY(0);*/
    }
}

.selected-count[b-nl62wp1frp] {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.toolbar-actions[b-nl62wp1frp] {
    display: flex;
    gap: 8px;
}

.badge[b-nl62wp1frp] {
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-left: 4px;
}

.filter-container[b-nl62wp1frp] {
    display: flex;
    gap: 12px;
    align-items: center;
}

/* Table Enhancements */
.match-table tbody tr:hover.team-selected[b-nl62wp1frp] {
    background-color: rgba(28, 169, 201, 0.15) !important;
}

.match-table th:first-child[b-nl62wp1frp],
.match-table td:first-child[b-nl62wp1frp] {
    text-align: center;
    width: 40px;
    padding-left: 8px !important;
    padding-right: 8px !important;
}

.match-table input[type="checkbox"][b-nl62wp1frp] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

/* Existing styles maintained below */
.table-responsive[b-nl62wp1frp] {
    overflow-x: auto;
}

.team-table[b-nl62wp1frp] {
    width: 100%;
    border-collapse: collapse;
}

    .team-table th[b-nl62wp1frp] {
        background-color: var(--table-header-background);
        padding: 12px 16px;
        text-align: left;
        font-weight: 500;
        color: var(--text-color);
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .team-table td[b-nl62wp1frp] {
        padding: 12px 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        vertical-align: middle;
    }

    .team-table tr:hover[b-nl62wp1frp] {
        background-color: rgba(0, 0, 0, 0.02);
    }

.logo-cell[b-nl62wp1frp] {
    text-align: center;
}

.team-logo[b-nl62wp1frp] {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    overflow: hidden;
    border-radius: 4px;
}

    .team-logo img[b-nl62wp1frp] {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.team-logo-large[b-nl62wp1frp] {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    font-size: 1.8rem;
}

.actions-cell[b-nl62wp1frp] {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
}

.search-box[b-nl62wp1frp] {
    position: relative;
    margin-right: 16px;
}

.search-icon[b-nl62wp1frp] {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary-color);
}

.search-input[b-nl62wp1frp] {
    padding: 8px 12px 8px 32px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    width: 250px;
    background-color: var(--surface-color);
    color: var(--text-color);
}

.card-actions[b-nl62wp1frp] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 1rem;
    gap: 12px;
}

.pagination[b-nl62wp1frp] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.page-info[b-nl62wp1frp] {
    margin: 0 16px;
    color: var(--text-secondary-color);
    font-size: 0.9rem;
}

/* Modal styles */
.modal-backdrop[b-nl62wp1frp] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal[b-nl62wp1frp] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1010;
}

.modal-content[b-nl62wp1frp] {
    background-color: var(--surface-color);
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes modalFadeIn-b-nl62wp1frp {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header[b-nl62wp1frp] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    background-color: var(--surface-color);
    z-index: 1;
}

    .modal-header h3[b-nl62wp1frp] {
        color: var(--primary-dark-color);
        margin: 0;
        font-size: 1.2rem;
    }

.close-button[b-nl62wp1frp] {
    background: transparent;
    border: none;
    color: var(--text-secondary-color);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
}

.modal-body[b-nl62wp1frp] {
    padding: 20px;
}

.modal-footer[b-nl62wp1frp] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    position: sticky;
    bottom: 0;
    background-color: var(--surface-color);
    z-index: 1;
}

.team-preview[b-nl62wp1frp] {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.team-logo-preview[b-nl62wp1frp] {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.form-group[b-nl62wp1frp] {
    margin-bottom: 16px;
}

    .form-group label[b-nl62wp1frp] {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
    }

.form-control[b-nl62wp1frp] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    background-color: var(--surface-color);
    color: var(--text-color);
    font-size: 1rem;
}

    .form-control:focus[b-nl62wp1frp] {
        border-color: var(--primary-color);
        outline: none;
        box-shadow: 0 0 0 2px rgba(28, 169, 201, 0.2);
    }

.color-picker[b-nl62wp1frp] {
    height: 40px;
    padding: 4px;
    cursor: pointer;
}

.text-danger[b-nl62wp1frp] {
    color: var(--error-color);
}

/* Team logo options styles */
.team-logo-options[b-nl62wp1frp] {
    margin-bottom: 24px;
}

.option-tabs[b-nl62wp1frp] {
    display: flex;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.tab-button[b-nl62wp1frp] {
    padding: 8px 16px;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-secondary-color);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .tab-button.active[b-nl62wp1frp] {
        color: var(--primary-color);
        border-bottom-color: var(--primary-color);
    }

    .tab-button:hover:not(.active)[b-nl62wp1frp] {
        color: var(--text-color);
        background-color: rgba(0, 0, 0, 0.02);
    }

    .tab-button i[b-nl62wp1frp] {
        font-size: 1rem;
    }

.logo-preview-container[b-nl62wp1frp] {
    margin-top: 16px;
}

.form-row[b-nl62wp1frp] {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group-half[b-nl62wp1frp] {
    flex: 1;
    min-width: 0;
}

/* Loading styles */
.loading-container[b-nl62wp1frp] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
}

.loading-spinner[b-nl62wp1frp] {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 4px solid var(--primary-color);
    animation: spin-b-nl62wp1frp 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin-b-nl62wp1frp {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.no-data[b-nl62wp1frp] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
    color: var(--text-secondary-color);
}

    .no-data i[b-nl62wp1frp] {
        font-size: 3rem;
        margin-bottom: 16px;
        opacity: 0.5;
    }

/* Button styles */
.btn[b-nl62wp1frp] {
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary[b-nl62wp1frp] {
    background-color: var(--primary-color);
    color: white;
}

    .btn-primary:hover[b-nl62wp1frp] {
        background-color: var(--primary-dark-color);
    }

.btn-secondary[b-nl62wp1frp] {
    background-color: #f0f0f0;
    color: var(--text-color);
}

    .btn-secondary:hover[b-nl62wp1frp] {
        background-color: #e0e0e0;
    }

.btn-danger[b-nl62wp1frp] {
    background-color: var(--error-color);
    color: white;
}

    .btn-danger:hover[b-nl62wp1frp] {
        background-color: #d32f2f;
    }

.btn-icon[b-nl62wp1frp] {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--text-secondary-color);
    border-radius: var(--border-radius);
}

    .btn-icon:hover[b-nl62wp1frp] {
        background-color: rgba(0, 0, 0, 0.05);
        color: var(--primary-color);
    }

    .btn-icon.danger[b-nl62wp1frp] {
        color: var(--error-color);
    }

        .btn-icon.danger:hover[b-nl62wp1frp] {
            background-color: rgba(244, 67, 54, 0.1);
        }

/* Dark Mode adjustments */
[data-theme="dark"] .team-selected[b-nl62wp1frp] {
    background-color: rgba(28, 169, 201, 0.2) !important;
}

[data-theme="dark"] .selected-teams-toolbar[b-nl62wp1frp] {
    background-color: #2a2a2a;
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .team-table tr:hover[b-nl62wp1frp] {
    background-color: rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .team-table td[b-nl62wp1frp] {
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .form-control[b-nl62wp1frp] {
    background-color: #333;
    border-color: rgba(255, 255, 255, 0.1);
}

    [data-theme="dark"] .form-control:focus[b-nl62wp1frp] {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 2px rgba(28, 169, 201, 0.3);
    }

[data-theme="dark"] .btn-secondary[b-nl62wp1frp] {
    background-color: #333;
}

    [data-theme="dark"] .btn-secondary:hover[b-nl62wp1frp] {
        background-color: #444;
    }

[data-theme="dark"] .btn-icon:hover[b-nl62wp1frp] {
    background-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .search-input[b-nl62wp1frp] {
    background-color: #333;
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .loading-spinner[b-nl62wp1frp] {
    border-color: rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary-color);
}

[data-theme="dark"] .tab-button:hover:not(.active)[b-nl62wp1frp] {
    background-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .team-logo-preview[b-nl62wp1frp] {
    background-color: #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .card-actions[b-nl62wp1frp] {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .filter-container[b-nl62wp1frp] {
        order: 2;
        justify-content: space-between;
    }

    .search-box[b-nl62wp1frp] {
        margin-right: 0;
        margin-bottom: 0;
        flex: 1;
    }

    .search-input[b-nl62wp1frp] {
        width: 100%;
    }

    .form-row[b-nl62wp1frp] {
        flex-direction: column;
        gap: 0;
    }

    .team-table th:nth-child(4)[b-nl62wp1frp],
    .team-table td:nth-child(4)[b-nl62wp1frp],
    .team-table th:nth-child(6)[b-nl62wp1frp],
    .team-table td:nth-child(6)[b-nl62wp1frp] {
        display: none;
    }

    .selected-teams-toolbar[b-nl62wp1frp] {
        left: 10px;
        right: 10px;
        transform: none;
        border-radius: 8px;
        flex-direction: column;
        gap: 12px;
    }

    .toolbar-actions[b-nl62wp1frp] {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 576px) {
    .team-table th:nth-child(5)[b-nl62wp1frp],
    .team-table td:nth-child(5)[b-nl62wp1frp],
    .team-table th:nth-child(7)[b-nl62wp1frp],
    .team-table td:nth-child(7)[b-nl62wp1frp] {
        display: none;
    }
}

/* Common Table Styling to Apply to All Pages */
.table-responsive[b-nl62wp1frp] {
    width: 100%;
    height: 100%;
    overflow: auto !important;
}

.admin-main[b-nl62wp1frp] {
    overflow: auto !important;
    display: flex;
    flex-direction: column;
    position: relative !important;
}

.match-table[b-nl62wp1frp] {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    font-size: 0.95rem;
    border-spacing: 0;
    background-color: var(--surface-color);
}

    .match-table th[b-nl62wp1frp] {
        background-color: var(--table-header-background);
        color: var(--text-color);
        text-align: left;
        padding: 1rem 0.875rem !important;
        font-weight: 400;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        border: none;
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .match-table td[b-nl62wp1frp] {
        padding: 1.125rem 0.875rem !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
        vertical-align: middle;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .match-table tbody tr:hover[b-nl62wp1frp] {
        background-color: rgba(33, 150, 243, 0.05);
        cursor: pointer;
    }

.actions-cell[b-nl62wp1frp] {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    justify-content: flex-end !important;
}

.status-indicator[b-nl62wp1frp] {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px;
}

    .status-indicator.active[b-nl62wp1frp] {
        background-color: var(--success-color);
    }

    .status-indicator.inactive[b-nl62wp1frp],
    .status-indicator.cancelled[b-nl62wp1frp] {
        background-color: var(--error-color);
    }

    .status-indicator.planned[b-nl62wp1frp] {
        background-color: rgba(76, 175, 80, 0.7);
    }

    .status-indicator.finished[b-nl62wp1frp] {
        background-color: rgba(33, 150, 243, 0.7);
    }

    .status-indicator.postponed[b-nl62wp1frp] {
        background-color: rgba(255, 152, 0, 0.7);
    }

.btn-icon[b-nl62wp1frp] {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--text-secondary-color);
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
}

    .btn-icon:hover[b-nl62wp1frp] {
        background-color: rgba(0, 0, 0, 0.05);
        color: var(--primary-color);
    }

    .btn-icon.danger[b-nl62wp1frp] {
        color: var(--error-color);
    }

        .btn-icon.danger:hover[b-nl62wp1frp] {
            background-color: rgba(244, 67, 54, 0.1);
        }

[data-theme="dark"] .match-table tr:hover[b-nl62wp1frp] {
    background-color: rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .match-table td[b-nl62wp1frp] {
    border-bottom-color: rgba(255, 255, 255, 0.05) !important;
}

@media (max-width: 768px) {
    thead th:last-child[b-nl62wp1frp] {
        width: 2rem !important;
        max-width: 2rem !important;
        min-width: 2rem !important;
    }
}
/* _content/SimpliMed.PWA.TippMeister/Components/Pages/AdminTranslation.razor.rz.scp.css */
/* AdminTranslations.razor.css */

.translations-container[b-o5cp9utgg5] {
    padding: 0;
}

.translations-toolbar[b-o5cp9utgg5] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
    gap: 12px;
}

.search-box[b-o5cp9utgg5] {
    position: relative;
    min-width: 250px;
    flex-grow: 1;
    max-width: 400px;
}

.search-icon[b-o5cp9utgg5] {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary-color);
}

.search-input[b-o5cp9utgg5] {
    padding: 8px 12px 8px 32px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    width: 100%;
    background-color: var(--surface-color);
    color: var(--text-color);
}

.toolbar-actions[b-o5cp9utgg5] {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.language-selector[b-o5cp9utgg5] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.select-language[b-o5cp9utgg5] {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    padding: 6px 8px;
    background-color: var(--surface-color);
    color: var(--text-color);
    min-width: 120px;
}

.translations-table[b-o5cp9utgg5] {
    overflow-x: auto;
}

.table[b-o5cp9utgg5] {
    width: 100%;
    border-collapse: collapse;
}

    .table th[b-o5cp9utgg5], .table td[b-o5cp9utgg5] {
        padding: 12px 16px;
        text-align: left;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        vertical-align: top;
    }

    .table th[b-o5cp9utgg5] {
        font-weight: 500;
        background-color: var(--table-header-background);
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .table tbody tr:hover[b-o5cp9utgg5] {
        background-color: rgba(0, 0, 0, 0.02);
    }

.key-column[b-o5cp9utgg5] {
    width: 25%;
    word-break: break-word;
}

.translation-key[b-o5cp9utgg5] {
    font-weight: 500;
    word-break: break-word;
    padding-right: 8px;
}

.reference-column[b-o5cp9utgg5] {
    width: 25%;
}

.reference-header[b-o5cp9utgg5] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.select-reference[b-o5cp9utgg5] {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    padding: 4px 6px;
    background-color: var(--surface-color);
    color: var(--text-color);
    font-size: 0.9rem;
}

.reference-value[b-o5cp9utgg5] {
    color: var(--text-secondary-color);
    font-style: italic;
    word-break: break-word;
    white-space: pre-wrap;
}

.actions-column[b-o5cp9utgg5] {
    width: 100px;
    text-align: center;
}

.translation-value[b-o5cp9utgg5] {
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    padding: 8px;
    font-family: inherit;
    font-size: inherit;
    background-color: var(--surface-color);
    color: var(--text-color);
    resize: vertical;
    min-height: 60px;
}

    .translation-value:focus[b-o5cp9utgg5] {
        border-color: var(--primary-color);
        outline: none;
        box-shadow: 0 0 0 2px rgba(28, 169, 201, 0.2);
    }

/* Modal styles */
.modal-backdrop[b-o5cp9utgg5] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal[b-o5cp9utgg5] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1010;
}

.modal-content[b-o5cp9utgg5] {
    background-color: var(--surface-color);
    width: 90%;
    max-width: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    
}

@keyframes modalFadeIn-b-o5cp9utgg5 {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header[b-o5cp9utgg5] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

    .modal-header h3[b-o5cp9utgg5] {
        color: var(--primary-dark-color);
        margin: 0;
        font-size: 1.2rem;
    }

.close-button[b-o5cp9utgg5] {
    background: transparent;
    border: none;
    color: var(--text-secondary-color);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
}

.modal-body[b-o5cp9utgg5] {
    padding: 20px;
}

.modal-footer[b-o5cp9utgg5] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.form-group[b-o5cp9utgg5] {
    margin-bottom: 16px;
}

    .form-group label[b-o5cp9utgg5] {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
    }

.form-text[b-o5cp9utgg5] {
    font-size: 0.85rem;
    color: var(--text-secondary-color);
    margin-top: 4px;
}

.form-checkbox[b-o5cp9utgg5] {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.form-control[b-o5cp9utgg5] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    background-color: var(--surface-color);
    color: var(--text-color);
    font-size: 1rem;
}

    .form-control:focus[b-o5cp9utgg5] {
        border-color: var(--primary-color);
        outline: none;
        box-shadow: 0 0 0 2px rgba(28, 169, 201, 0.2);
    }

.text-danger[b-o5cp9utgg5] {
    color: var(--error-color);
}

.text-muted[b-o5cp9utgg5] {
    color: var(--text-secondary-color);
}

/* Loading styles */
.loading-container[b-o5cp9utgg5] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
}

.loading-spinner[b-o5cp9utgg5] {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 4px solid var(--primary-color);
    animation: spin-b-o5cp9utgg5 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin-b-o5cp9utgg5 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.no-data[b-o5cp9utgg5] {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary-color);
}

    .no-data i[b-o5cp9utgg5] {
        font-size: 3rem;
        margin-bottom: 16px;
        opacity: 0.5;
    }

/* Button styles */
.btn[b-o5cp9utgg5] {
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #f0f0f0;
    color: var(--text-color);
}

    .btn:hover[b-o5cp9utgg5] {
        background-color: #e0e0e0;
    }

.btn-primary[b-o5cp9utgg5] {
    background-color: var(--primary-color);
    color: white;
}

    .btn-primary:hover[b-o5cp9utgg5] {
        background-color: var(--primary-dark-color);
    }

.btn-secondary[b-o5cp9utgg5] {
    background-color: #f0f0f0;
    color: var(--text-color);
}

    .btn-secondary:hover[b-o5cp9utgg5] {
        background-color: #e0e0e0;
    }

.btn-success[b-o5cp9utgg5] {
    background-color: var(--success-color);
    color: white;
}

    .btn-success:hover[b-o5cp9utgg5] {
        background-color: #3d8b40;
    }

.btn-danger[b-o5cp9utgg5] {
    background-color: var(--error-color);
    color: white;
}

    .btn-danger:hover[b-o5cp9utgg5] {
        background-color: #d32f2f;
    }

.btn-icon[b-o5cp9utgg5] {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--text-secondary-color);
    border-radius: var(--border-radius);
}

    .btn-icon:hover[b-o5cp9utgg5] {
        background-color: rgba(0, 0, 0, 0.05);
        color: var(--primary-color);
    }

    .btn-icon.danger[b-o5cp9utgg5] {
        color: var(--error-color);
    }

        .btn-icon.danger:hover[b-o5cp9utgg5] {
            background-color: rgba(244, 67, 54, 0.1);
        }

/* Dark Mode adjustments */
[data-theme="dark"] .search-input[b-o5cp9utgg5],
[data-theme="dark"] .select-language[b-o5cp9utgg5],
[data-theme="dark"] .select-reference[b-o5cp9utgg5],
[data-theme="dark"] .translation-value[b-o5cp9utgg5],
[data-theme="dark"] .form-control[b-o5cp9utgg5] {
    background-color: #333;
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .table tbody tr:hover[b-o5cp9utgg5] {
    background-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .btn[b-o5cp9utgg5] {
    background-color: #333;
}

    [data-theme="dark"] .btn:hover[b-o5cp9utgg5] {
        background-color: #444;
    }

[data-theme="dark"] .btn-secondary[b-o5cp9utgg5] {
    background-color: #333;
}

    [data-theme="dark"] .btn-secondary:hover[b-o5cp9utgg5] {
        background-color: #444;
    }

[data-theme="dark"] .loading-spinner[b-o5cp9utgg5] {
    border-color: rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .translations-table .table th:not(.key-column):not(.actions-column)[b-o5cp9utgg5],
    .translations-table .table td:not(.key-column):not(.actions-column)[b-o5cp9utgg5] {
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .translations-toolbar[b-o5cp9utgg5] {
        flex-direction: column;
        align-items: stretch;
    }

    .toolbar-actions[b-o5cp9utgg5] {
        justify-content: flex-end;
    }

    .language-selector[b-o5cp9utgg5] {
        flex-direction: column;
        align-items: flex-start;
    }

    .select-language[b-o5cp9utgg5] {
        width: 100%;
    }

    .card-actions[b-o5cp9utgg5] {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        margin-top: 12px;
        justify-content: flex-end;
        margin-bottom: 1rem;
    }
}
/* _content/SimpliMed.PWA.TippMeister/Components/Pages/AdminUsers.razor.rz.scp.css */
/* AdminUsers.razor.css - Updated to match Home.razor table styles */

.users-container[b-j8r8fe4ec8] {
    padding: 0;
}

/* Match Table Container - Copied from Home.razor.css */
.match-table-container[b-j8r8fe4ec8] {
    overflow-x: auto;
    overflow-y: auto;
    scrollbar-width: thin; /* For Firefox */
    -webkit-overflow-scrolling: touch;
    flex: 1;
    box-shadow: var(--shadow);
    width: 100%;
    position: relative;
    border-radius: 0;
    background-color: var(--surface-color);
}

/* Table styling - Matching Home.razor table styles */
.match-table[b-j8r8fe4ec8] {
    min-width: 900px; /* Reasonable minimum width for all columns */
    width: 100%; /* Allow table to size based on content */
    table-layout: fixed;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    font-size: 0.95rem;
    border-spacing: 0;
    background-color: var(--surface-color);
}

.table-scroll-hint[b-j8r8fe4ec8] {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--text-color);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    opacity: 0.7;
    pointer-events: none;
    transition: opacity 0.5s ease;
    z-index: 10;
}

/* Dark mode support for table scroll hint */
[data-theme="dark"] .table-scroll-hint[b-j8r8fe4ec8] {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

/* Hide scroll hint when not needed */
.table-scroll-hint.hide[b-j8r8fe4ec8] {
    opacity: 0;
}

/* Table header styling - Match Home.razor */
.match-table thead[b-j8r8fe4ec8] {
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: var(--table-header-background);
    box-shadow: none;
}

    .match-table thead th[b-j8r8fe4ec8] {
        position: sticky;
        top: 0;
        z-index: 10;
        box-shadow: none;
        border: none;
        border-bottom: none;
        background-color: var(--table-header-background);
    }

.match-table th[b-j8r8fe4ec8] {
    background-color: var(--table-header-background);
    color: var(--text-color);
    text-align: left;
    padding: 1rem 0.875rem;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    border: none;
}

.match-table td[b-j8r8fe4ec8] {
    padding: 1.125rem 0.875rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    vertical-align: middle;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.match-table th[b-j8r8fe4ec8], .match-table td[b-j8r8fe4ec8] {
    width: auto !important;
    box-sizing: border-box;
    flex: none;
}

.match-table tbody tr:hover[b-j8r8fe4ec8] {
    background-color: rgba(33, 150, 243, 0.05);
    cursor: pointer;
}

/* User avatar styles - Mimicking team logo from Home.razor.css */
.user-name-cell[b-j8r8fe4ec8] {
    display: flex;
    align-items: center;
}

.user-avatar[b-j8r8fe4ec8] {
    width: 36px;
    height: 36px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 1rem;
    overflow: hidden;
}

    .user-avatar img[b-j8r8fe4ec8] {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* Status indicator - Similar to Home.razor.css's status badges */
.status-indicator[b-j8r8fe4ec8] {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px;
}

    .status-indicator.active[b-j8r8fe4ec8] {
        background-color: var(--success-color);
    }

    .status-indicator.inactive[b-j8r8fe4ec8] {
        background-color: var(--error-color);
    }

/* Action buttons - Matching Home.razor.css button styles */
.actions-cell[b-j8r8fe4ec8] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-icon[b-j8r8fe4ec8] {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--text-secondary-color);
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
}

    .btn-icon:hover[b-j8r8fe4ec8] {
        background-color: rgba(0, 0, 0, 0.05);
        color: var(--primary-color);
    }

    .btn-icon.danger[b-j8r8fe4ec8] {
        color: var(--error-color);
    }

        .btn-icon.danger:hover[b-j8r8fe4ec8] {
            background-color: rgba(244, 67, 54, 0.1);
        }

/* Search functionality - Matching Home.razor.css */
.search-box[b-j8r8fe4ec8] {
    position: relative;
    margin-right: 16px;
}

.search-icon[b-j8r8fe4ec8] {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary-color);
}

.search-input[b-j8r8fe4ec8] {
    padding: 8px 12px 8px 32px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    width: 250px;
    background-color: var(--surface-color);
    color: var(--text-color);
}

.card-actions[b-j8r8fe4ec8] {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

/* Pagination - Matching Home.razor.css */
.pagination[b-j8r8fe4ec8] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.page-info[b-j8r8fe4ec8] {
    margin: 0 16px;
    color: var(--text-secondary-color);
    font-size: 0.9rem;
}

/* Modal styles - Updating to match Home.razor.css */
.modal-backdrop[b-j8r8fe4ec8] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal[b-j8r8fe4ec8] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1010;
}

.modal-content[b-j8r8fe4ec8] {
    background-color: var(--surface-color);
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes modalFadeIn-b-j8r8fe4ec8 {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header[b-j8r8fe4ec8] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #0aaf25;
    color: white;
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 1;
}

    .modal-header h3[b-j8r8fe4ec8] {
        color: white;
        margin: 0;
        font-size: 1.1rem;
        font-weight: 500;
    }

.close-button[b-j8r8fe4ec8] {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
}

    .close-button:hover[b-j8r8fe4ec8] {
        opacity: 0.8;
    }

.modal-body[b-j8r8fe4ec8] {
    padding: 20px;
}

.modal-footer[b-j8r8fe4ec8] {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 15px;
    border-top: 1px solid #eee;
    position: sticky;
    bottom: 0;
    background-color: var(--surface-color);
    z-index: 1;
}

/* Form styling */
.form-group[b-j8r8fe4ec8] {
    margin-bottom: 16px;
}

    .form-group label[b-j8r8fe4ec8] {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
    }

.form-control[b-j8r8fe4ec8] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius);
    background-color: var(--surface-color);
    color: var(--text-color);
    font-size: 1rem;
}

    .form-control:focus[b-j8r8fe4ec8] {
        border-color: var(--primary-color);
        outline: none;
        box-shadow: 0 0 0 2px rgba(28, 169, 201, 0.2);
    }

/* Button styles - Matching Home.razor.css */
.btn[b-j8r8fe4ec8] {
    padding: 8px 16px;
    border-radius: var(--border-radius);
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary[b-j8r8fe4ec8] {
    background-color: var(--primary-color);
    color: white;
}

    .btn-primary:hover[b-j8r8fe4ec8] {
        background-color: var(--primary-color);
    }

.btn-secondary[b-j8r8fe4ec8] {
    background-color: #f0f0f0;
    color: #666;
}

    .btn-secondary:hover[b-j8r8fe4ec8] {
        background-color: #e0e0e0;
    }

/* Toggle switch */
.toggle-switch[b-j8r8fe4ec8] {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

    .toggle-switch input[b-j8r8fe4ec8] {
        opacity: 0;
        width: 0;
        height: 0;
    }

.toggle-slider[b-j8r8fe4ec8] {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 24px;
}

    .toggle-slider[b-j8r8fe4ec8]:before {
        position: absolute;
        content: "";
        height: 18px;
        width: 18px;
        left: 3px;
        bottom: 3px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
    }

input:checked + .toggle-slider[b-j8r8fe4ec8] {
    background-color: var(--primary-color);
}

    input:checked + .toggle-slider[b-j8r8fe4ec8]:before {
        transform: translateX(22px);
    }

/* Form checkbox styles */
.form-checkbox[b-j8r8fe4ec8] {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

    .form-checkbox input[type="checkbox"][b-j8r8fe4ec8] {
        margin-right: 8px;
    }

/* Loading styles */
.loading-container[b-j8r8fe4ec8] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
}

.loading-spinner[b-j8r8fe4ec8] {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 4px solid var(--primary-color);
    animation: spin-b-j8r8fe4ec8 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin-b-j8r8fe4ec8 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.no-data[b-j8r8fe4ec8] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 0;
    color: var(--text-secondary-color);
}

    .no-data i[b-j8r8fe4ec8] {
        font-size: 3rem;
        margin-bottom: 16px;
        opacity: 0.5;
    }

/* Form row for multiple inputs in a row */
.form-row[b-j8r8fe4ec8] {
    display: flex;
    gap: 16px;
    margin-bottom: 0;
}

.form-group-half[b-j8r8fe4ec8] {
    flex: 1;
    min-width: 0;
}

/* User avatar upload */
.user-avatar-upload[b-j8r8fe4ec8] {
    margin-bottom: 24px;
    max-width: 180px;
    margin-left: auto;
    margin-right: auto;
}

/* Dark Mode adjustments */
[data-theme="dark"] .match-table tr:hover[b-j8r8fe4ec8] {
    background-color: rgba(255, 255, 255, 0.03);
}

[data-theme="dark"] .form-control[b-j8r8fe4ec8] {
    background-color: #333;
    border-color: rgba(255, 255, 255, 0.1);
}

    [data-theme="dark"] .form-control:focus[b-j8r8fe4ec8] {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 2px rgba(28, 169, 201, 0.3);
    }

[data-theme="dark"] .btn-secondary[b-j8r8fe4ec8] {
    background-color: #333;
}

    [data-theme="dark"] .btn-secondary:hover[b-j8r8fe4ec8] {
        background-color: #444;
    }

[data-theme="dark"] .btn-icon:hover[b-j8r8fe4ec8] {
    background-color: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .search-input[b-j8r8fe4ec8] {
    background-color: #333;
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .loading-spinner[b-j8r8fe4ec8] {
    border-color: rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary-color);
}

[data-theme="dark"] .match-table td[b-j8r8fe4ec8] {
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-row[b-j8r8fe4ec8] {
        flex-direction: column;
        gap: 0;
    }

    .card-actions[b-j8r8fe4ec8] {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .table-responsive[b-j8r8fe4ec8] {
        /*height: 100%*//*calc(100vh - 259px)*/ /*!important;*/
    }

    .search-box[b-j8r8fe4ec8] {
        margin-right: 0;
        margin-bottom: 8px;
        width: 100%;
    }

    .search-input[b-j8r8fe4ec8] {
        width: 100%;
    }

    /* Ensure mobile table scroll works properly */
    .match-table[b-j8r8fe4ec8] {
        min-width: 900px !important;
        max-width: none !important;
    }

    /* Show table scroll hint on mobile */
    .table-scroll-hint[b-j8r8fe4ec8] {
        display: block;
    }
}

/* iOS/Safari specific fixes */
.match-table-container[b-j8r8fe4ec8]::-webkit-scrollbar {
    -webkit-appearance: none;
    height: 7px;
}

.match-table-container[b-j8r8fe4ec8]::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0,0,0,.3);
}

/* Additional CSS to be added to the existing CSS files for consistent delete button styling */

.btn-danger[b-j8r8fe4ec8] {
    background-color: #dc3545;
    color: white;
    border: none;
}

    .btn-danger:hover[b-j8r8fe4ec8] {
        background-color: #c82333;
    }

/* Ensure the trash icon button in modal footer has proper spacing and styling */
.modal-footer .btn[b-j8r8fe4ec8] {
    margin-left: 8px;
}

    .modal-footer .btn:first-child[b-j8r8fe4ec8] {
        margin-left: 0;
        margin-right: auto;
    }

    /* Style for the standalone trash button (first button in footer when editing) */
    .modal-footer .btn.btn-secondary:first-child[b-j8r8fe4ec8] {
        background-color: #6c757d;
        color: white;
    }

        .modal-footer .btn.btn-secondary:first-child:hover[b-j8r8fe4ec8] {
            background-color: #5a6268;
        }

@media (max-width: 768px) {
    thead th:last-child[b-j8r8fe4ec8] {
        width: 2rem !important;
        max-width: 2rem !important;
        min-width: 2rem !important;
    }
}
/* _content/SimpliMed.PWA.TippMeister/Components/Pages/ConfirmEmail.razor.rz.scp.css */
/* Inherit styles from LoginAlt.razor.css */
.login-page[b-0sqtuotx4u] {
    min-height: 100vh;
    width: 100%;
    background-color: rgb(236,236,236);
    /*background-image: url("/background.jpg");*/
    background-size: cover;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Header styles */
header[b-0sqtuotx4u] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    width: 100%;
}

.logo-container[b-0sqtuotx4u] {
    display: flex;
    align-items: center;
}

.cdu-logo[b-0sqtuotx4u] {
    height: 40px;
    width: auto;
}

.app-title[b-0sqtuotx4u] {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Login container */
.login-container[b-0sqtuotx4u] {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 1rem;
}

.login-card[b-0sqtuotx4u] {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    display: flex;
    min-height: 35.5rem;
    max-height: 35.5rem;
    flex-direction: column;
    gap: 1.5rem;
}

.login-title[b-0sqtuotx4u] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Confirmation specific styles */
.confirmation-content[b-0sqtuotx4u] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-align: center;
    gap: 1.5rem;
}

.confirmation-icon[b-0sqtuotx4u] {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.trophy-icon[b-0sqtuotx4u] {
    width: 100%;
    height: auto;
}

.confirmation-text[b-0sqtuotx4u] {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

/* Login button */
.btn-login[b-0sqtuotx4u] {
    background-color: #0aaf25;
    color: white;
    margin-top:2.5rem;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.2s;
    max-width: 300px;
}

    .btn-login:hover[b-0sqtuotx4u] {
        background-color: #23b73b;
    }

    .btn-login:active[b-0sqtuotx4u] {
        transform: translateY(1px);
    }

/* Resend link */
.resend-link[b-0sqtuotx4u] {
    text-align: center;
    margin-top: 2.3rem;
    font-size: 0.9rem;
    color: #555;
}

    .resend-link a[b-0sqtuotx4u] {
        color: #0aaf25;
        text-decoration: none;
        font-weight: 500;
    }

        .resend-link a:hover[b-0sqtuotx4u] {
            text-decoration: underline;
        }

/* Responsive adjustments */
@media (max-width: 480px) {
    .login-card[b-0sqtuotx4u] {
        min-height: 31rem;
        max-height: 31rem;
        padding: 1rem;
        max-width: 290px;
        margin-top: -1rem;
    }

    .login-title[b-0sqtuotx4u] {
        padding: 0;
        margin-bottom: -0.5rem;
    }

    header[b-0sqtuotx4u] {
        padding: 1rem;
    }

    .cdu-logo[b-0sqtuotx4u] {
        height: 30px;
    }

    .confirmation-icon[b-0sqtuotx4u] {
        width: 80px;
        height: 80px;
    }

    .confirmation-text[b-0sqtuotx4u] {
        font-size: 0.95rem;
    }
}

/* Make sure we account for safe areas on modern devices */
@supports (padding: max(0px)) {
    .login-page[b-0sqtuotx4u] {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
        padding-bottom: max(0px, env(safe-area-inset-bottom));
    }
}
/* _content/SimpliMed.PWA.TippMeister/Components/Pages/Home.razor.rz.scp.css */
/* Styles for the Home page */

/* Header styles */
header[b-7bobsmnp7p] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    background-color: var(--primary-color);
    color: white;
    padding: 0 16px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    will-change: transform;
}

.header-left[b-7bobsmnp7p], .header-right[b-7bobsmnp7p] {
    display: flex;
    align-items: center;
    min-width: max-content;
}

.header-left[b-7bobsmnp7p] {
    width: 60px;
}

.header-right[b-7bobsmnp7p] {
    width: 180px;
    justify-content: flex-end;
}

.header-center[b-7bobsmnp7p] {
    margin-left:6rem;
    font-family: "Montserrat";
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    width: 0;
}

#lbl_appname[b-7bobsmnp7p] {
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
}

/* Button styles */
button[b-7bobsmnp7p] {
    background: none;
    border: none;
    color: white;
    padding: 8px;
    cursor: pointer;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

    button:hover[b-7bobsmnp7p] {
        background-color: rgba(255, 255, 255, 0.1);
    }

/* Avatar and notification badge */
.avatar[b-7bobsmnp7p] {
    position: relative;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.notification-badge[b-7bobsmnp7p] {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--error-color);
    color: white;
    font-size: 0.7rem;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Secondary toolbar */
/* Updated search container positioning */
.secondary-toolbar[b-7bobsmnp7p] {
    display: flex;
    justify-content: center !important; /* Right-align content */
    align-items: center;
    height: var(--secondary-toolbar-height);
    background-color: var(--surface-color);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    padding: 0 16px;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    z-index: 900;
}

.search-container[b-7bobsmnp7p] {
    flex: 0 1 auto; /* Don't grow to fill all space, can shrink */
    max-width: 400px; /* Limit max width */
    width: 40%; /* Take only 40% of space on desktop */
    margin: 0;
    font-family: "Helvetica";
    font-weight: 300;
}

.search-box[b-7bobsmnp7p] {
    position: relative;
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.04);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: background-color 0.2s;
    width: 100%;
}

/* Mobile optimizations for search */
@media (max-width: 768px) {
    .search-container[b-7bobsmnp7p] {
        width: 100%; /* Take full width on mobile */
        max-width: none;
    }

    .secondary-toolbar[b-7bobsmnp7p] {
        justify-content: center; /* Center on mobile */
    }
}

.search-box:focus-within[b-7bobsmnp7p] {
    background-color: rgba(0, 0, 0, 0.06);
}

.search-icon[b-7bobsmnp7p] {
    position: absolute;
    left: 12px;
    color: var(--text-secondary-color);
    font-size: 0.9rem;
}

#search-input[b-7bobsmnp7p] {
    border: none;
    background: transparent;
    padding: 10px 10px 10px 36px;
    width: 100%;
    outline: none;
    font-size: 0.95rem;
    color: var(--text-color);
}

.clear-search-button[b-7bobsmnp7p] {
    background: transparent;
    border: none;
    color: var(--text-secondary-color);
    padding: 0 10px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.2s;
}

    .clear-search-button.visible[b-7bobsmnp7p] {
        opacity: 1;
    }

/* Container layout */
.container[b-7bobsmnp7p] {
    display: flex;
    margin-top: calc(var(--header-height) + var(--secondary-toolbar-height));
    height: calc(100% - var(--header-height) - var(--secondary-toolbar-height));
    position: relative;
    overflow: hidden;
}

/* Side menu styles */
.side-menu[b-7bobsmnp7p] {
    width: var(--side-menu-width);
    background-color: var(--menu-background-color);
    height: 100%;
    position: fixed;
    left: 0;
    top: var(--header-height);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 900;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}

    .side-menu.open[b-7bobsmnp7p] {
        transform: translateX(0);
    }

    .side-menu.pinned[b-7bobsmnp7p] {
        /*transform: translateX(0);
        position: relative;
        top: 0;*/
    }

/* Dock button */
.dock-button[b-7bobsmnp7p] {
    align-self: flex-end;
    margin: 10px;
    background-color: rgba(28, 169, 201, 0.05);
    color: var(--text-color);
    border: none;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
}

    .dock-button:hover[b-7bobsmnp7p] {
        background-color: rgba(28, 169, 201, 0.15);
    }

    .dock-button i[b-7bobsmnp7p] {
        transform: rotate(45deg);
        transition: transform 0.2s ease;
    }

    .dock-button.docked i[b-7bobsmnp7p] {
        transform: rotate(0);
        color: var(--primary-color);
    }

.side-menu ul[b-7bobsmnp7p] {
    list-style: none;
    padding: 0 0 16px 0;
    margin-top: 0;
    width: 100%;
}

.side-menu li[b-7bobsmnp7p] {
    margin-bottom: 4px;
    width: 100%;
}

    .side-menu li.active a[b-7bobsmnp7p] {
        background-color: rgba(28, 169, 201, 0.15);
        border-left: 3px solid var(--primary-color);
        font-weight: 500;
    }

.side-menu a[b-7bobsmnp7p] {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.2s;
    width: 100%;
}

    .side-menu a:hover[b-7bobsmnp7p] {
        background-color: rgba(28, 169, 201, 0.1);
    }

    .side-menu a i[b-7bobsmnp7p] {
        margin-right: 16px;
        color: var(--primary-color);
        width: 24px;
        text-align: center;
    }

/* Main content area */
main[b-7bobsmnp7p] {
    flex-grow: 1;
    padding: 0;
    margin-left: 0;
    transition: margin-left 0.3s ease;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

    main.menu-pinned[b-7bobsmnp7p] {
        margin-left: var(--side-menu-width);
        width: calc(100% - var(--side-menu-width));
    }

/* Page styles */
.page[b-7bobsmnp7p] {
    display: none;
    padding: 0;
    background-color: var(--surface-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: 100%;
    overflow: hidden;
    flex: 1;
}

    .page.active[b-7bobsmnp7p] {
        display: flex;
        flex-direction: column;
    }

h2[b-7bobsmnp7p] {
    margin-bottom: 16px;
    color: var(--primary-dark-color);
    padding: 16px;
}

.dummy-content[b-7bobsmnp7p] {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

/* Match table styles */
.match-table-container[b-7bobsmnp7p] {
    overflow-x: auto;
    overflow-y: auto;
    scrollbar-width: thin; /* For Firefox */
    -webkit-overflow-scrolling: touch;
    flex: 1;
    box-shadow: var(--shadow);
    width: 100%;
    position: relative;
    border-radius: 0;
    background-color: var(--surface-color);
}

/* Consistent table sizing */
.match-table[b-7bobsmnp7p] {
    min-width: 900px; /* Reasonable minimum width for all columns */
    width: max-content; /* Allow table to size based on content */
    table-layout: fixed;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    font-size: 0.95rem;
    border-spacing: 0;
    background-color: var(--surface-color);
}

/* Make sure table doesn't have conflicting widths on mobile */
@media (max-width: 767px) {
    .match-table[b-7bobsmnp7p] {
        min-width: 900px !important;
        /*width: max-content !important;*/
        max-width: none !important;
    }
}

.table-scroll-hint[b-7bobsmnp7p] {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--text-color);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    opacity: 0.7;
    pointer-events: none;
    transition: opacity 0.5s ease;
    z-index: 10;
}

:global([data-theme="dark"]) .table-scroll-hint[b-7bobsmnp7p] {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

/* Hide scroll hint when not needed or after scrolling */
.table-scroll-hint.hide[b-7bobsmnp7p] {
    opacity: 0;
}

/* Handle team container width for mobile */
.team-container[b-7bobsmnp7p] {
    min-width: 120px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Ensure the score column has adequate space */
.score[b-7bobsmnp7p] {
    min-width: 60px;
    font-weight: bold;
    text-align: center;
}

    .match-table .col-date[b-7bobsmnp7p] {
        width: 7.5rem;
        min-width: 7.5rem;
        max-width: 7.5rem;
    }

    .match-table .col-time[b-7bobsmnp7p] {
        width: 6rem;
        min-width: 6rem;
        max-width: 6rem;
    }

    .match-table .col-logo[b-7bobsmnp7p] {
        width: 2.0rem;
        min-width: 2.0rem;
        max-width: 2.0rem;
    }

    .match-table .col-score[b-7bobsmnp7p] {
        width: 6.0rem;
        min-width: 6.0rem;
        max-width: 6.0rem;
    }

    .match-table .col-team[b-7bobsmnp7p] {
        width: 20rem;
        min-width: 20rem;
        max-width: 20rem;
    }

    .match-table .col-tip[b-7bobsmnp7p] {
        width: 6rem;
        min-width: 6rem;
        max-width: 6rem;
    }

    .match-table .col-tips-count[b-7bobsmnp7p] {
        width: 6rem;
        min-width: 6rem;
        max-width: 6rem;
    }

    .match-table .col-status[b-7bobsmnp7p] {
        width: 8rem;
        min-width: 8rem;
        max-width: 8rem;
    }

    .match-table thead[b-7bobsmnp7p] {
        position: sticky;
        top: 0;
        z-index: 10;
        background-color: var(--table-header-background);
        box-shadow: none;
    }

      /*  .match-table thead::after {
            content: "";
            position: absolute;
            top: 0;
            left: 100%;
            height: 100%;
            width: 100vw;
            background-color: var(--table-header-background);
            z-index: -1;
        }*/

        .match-table thead th[b-7bobsmnp7p] {
            position: sticky;
            top: 0;
            z-index: 10;
            box-shadow: none;
            border: none;
            border-bottom: none;
            background-color: var(--table-header-background);
        }

    .match-table th[b-7bobsmnp7p] {
        background-color: var(--table-header-background);
        color: var(--text-color);
        text-align: left;
        padding: 1rem 0.875rem;
        font-weight: 400;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        border: none;
    }

    .match-table td[b-7bobsmnp7p] {
        padding: 1.125rem 0.875rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        vertical-align: middle;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .match-table th[b-7bobsmnp7p], .match-table td[b-7bobsmnp7p] {
        width: auto !important;
        box-sizing: border-box;
        flex: none;
    }

    .match-table tbody tr:hover[b-7bobsmnp7p] {
        background-color: rgba(33, 150, 243, 0.05);
        cursor: pointer;
    }

    .match-table .team-logo[b-7bobsmnp7p] {
        text-align: center;
    }

        .match-table .team-logo i[b-7bobsmnp7p] {
            font-size: 1.6rem;
        }

    .match-table .team-name[b-7bobsmnp7p] {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-weight: 500;
    }

    .match-table .score[b-7bobsmnp7p] {
        font-weight: bold;
        text-align: center;
        font-size: 1rem;
    }

    .match-table .user-tip[b-7bobsmnp7p] {
        text-align: center;
        font-weight: 500;
    }

    .match-table .tips-count[b-7bobsmnp7p] {
        margin-top: 1rem;
        text-align: center;
        color: var(--text-secondary-color);
        font-size: 0.9rem;
    }

    .match-table .match-status[b-7bobsmnp7p] {
        text-align: center;
    }

.status-planned[b-7bobsmnp7p],
.status-cancelled[b-7bobsmnp7p],
.status-postponed[b-7bobsmnp7p],
.status-finished[b-7bobsmnp7p] {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

.status-planned[b-7bobsmnp7p] {
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--success-color);
}

.status-cancelled[b-7bobsmnp7p] {
    background-color: rgba(244, 67, 54, 0.1);
    color: var(--error-color);
}

.status-postponed[b-7bobsmnp7p] {
    background-color: rgba(255, 152, 0, 0.1);
    color: #ff9800;
}

.status-finished[b-7bobsmnp7p] {
    background-color: rgba(33, 150, 243, 0.1);
    color: var(--primary-color);
}

/* Loading spinner */
.loading-spinner[b-7bobsmnp7p] {
    border: 4px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    border-top: 4px solid var(--primary-color);
    width: 30px;
    height: 30px;
    animation: spin-b-7bobsmnp7p 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin-b-7bobsmnp7p {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Context menu styles */
.context-menu[b-7bobsmnp7p] {
    display: none;
    position: absolute;
    min-width: 180px;
    background-color: var(--surface-color);
    border-radius: var(--border-radius);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    z-index: 1050;
    overflow: hidden;
}

.context-menu-item[b-7bobsmnp7p] {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: var(--text-color);
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 0.95rem;
}

    .context-menu-item:hover[b-7bobsmnp7p] {
        background-color: rgba(33, 150, 243, 0.08);
    }

    .context-menu-item i[b-7bobsmnp7p] {
        width: 24px;
        margin-right: 12px;
        color: var(--primary-color);
        font-size: 1rem;
        text-align: center;
    }

/* Add these styles to Home.razor.css */

/* Modal Dialog for Tip Form - Redesigned */
.modal[b-7bobsmnp7p] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    align-items: center;
    justify-content: center;
}

.modal-content[b-7bobsmnp7p] {
    background-color: white;
    width: 90%;
    max-width: 350px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    
}

@keyframes modalFadeIn-b-7bobsmnp7p {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header[b-7bobsmnp7p] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #0aaf25;
    color: white;
    border-bottom: none;
}

    .modal-header h3[b-7bobsmnp7p] {
        color: white;
        margin: 0;
        font-size: 1.1rem;
        font-weight: 500;
    }

.close-button[b-7bobsmnp7p] {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
}

    .close-button:hover[b-7bobsmnp7p] {
        opacity: 0.8;
    }

.modal-body[b-7bobsmnp7p] {
    background-color: var(--menu-background-color) !important;
    padding: 15px;
}

.league-info[b-7bobsmnp7p] {
    margin-bottom: 10px;
    font-size: 0.8rem;
    color: #666;
    display: flex;
    justify-content: space-between;
}

.match-info[b-7bobsmnp7p] {
    margin-bottom: 20px;
    padding-left: 2rem;
    padding-right: 3rem;
}

.match-teams[b-7bobsmnp7p] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.match-team[b-7bobsmnp7p] {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 130px;
    text-align: center;
}

.team-logo-large[b-7bobsmnp7p] {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 50%;
    margin-bottom: 8px;
}

    .team-logo-large img[b-7bobsmnp7p] {
        max-width: 40px;
        max-height: 40px;
        object-fit: contain;
    }

    .team-logo-large i[b-7bobsmnp7p] {
        font-size: 1.5rem;
        color: #ccc;
    }

.team-name-large[b-7bobsmnp7p] {
    font-weight: 500;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.2;
}

.match-vs[b-7bobsmnp7p] {
    font-weight: 600;
    color: #999;
    font-size: 0.9rem;
}

.tip-form[b-7bobsmnp7p] {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

    .tip-form label[b-7bobsmnp7p] {
        display: block;
        margin-bottom: 10px;
        font-weight: 500;
        font-size: 0.9rem;
    }

.tip-score-input[b-7bobsmnp7p] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .tip-score-input input[b-7bobsmnp7p] {
        width: 50px;
        height: 40px;
        text-align: center;
        font-size: 1.2rem;
        border: 1px solid #ddd;
        border-radius: 4px;
        background-color: #f9f9f9;
        color: #333;
    }

        .tip-score-input input:focus[b-7bobsmnp7p] {
            outline: none;
            border-color: #0aaf25;
        }

.tip-score-separator[b-7bobsmnp7p] {
    font-size: 1.2rem;
    font-weight: 600;
    color: #999;
}

.modal-footer[b-7bobsmnp7p] {
    display: flex;
    background-color: var(--menu-background-color) !important;
    justify-content: flex-end;
    gap: 10px;
    padding: 15px;
    border-top: 1px solid #eee;
}

.primary-button[b-7bobsmnp7p], .secondary-button[b-7bobsmnp7p] {
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s;
    min-width: 100px;
    text-align: center;
}

.primary-button[b-7bobsmnp7p] {
    background-color: #0aaf25;
    color: white;
}

    .primary-button:hover[b-7bobsmnp7p] {
        background-color: #23b73b;
    }

.secondary-button[b-7bobsmnp7p] {
    background-color: #f0f0f0;
    color: #666;
}

    .secondary-button:hover[b-7bobsmnp7p] {
        background-color: #e0e0e0;
    }

/* Theme panel */
.dropdown-panel[b-7bobsmnp7p] {
    display: none;
    position: absolute;
    top: calc(var(--header-height) + 2.5rem);
    right: 1rem;
    min-width: 250px;
    background-color: var(--surface-color);
    border-radius: var(--border-radius);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    z-index: 1060;
    overflow: hidden;
}

    .dropdown-panel.show[b-7bobsmnp7p] {
        display: block;
        /*animation: fadeIn 0.2s ease;*/
    }

.dropdown-panel-header[b-7bobsmnp7p] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

    .dropdown-panel-header h3[b-7bobsmnp7p] {
        margin: 0;
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-color);
    }

.close-panel-button[b-7bobsmnp7p] {
    background: transparent;
    color: var(--text-secondary-color);
    border: none;
    font-size: 1rem;
    padding: 4px;
    cursor: pointer;
}

.dropdown-panel-content[b-7bobsmnp7p] {
    padding: 16px;
}

.theme-toggle-container[b-7bobsmnp7p] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.theme-toggle[b-7bobsmnp7p] {
    position: relative;
    width: 3.5rem;
    height: 1.75rem;
    border-radius: 1.75rem;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .theme-toggle.dark[b-7bobsmnp7p] {
        background-color: var(--primary-color);
    }

.theme-toggle-slider[b-7bobsmnp7p] {
    position: absolute;
    top: 0.25rem;
    left: 0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background-color: white;
    transition: transform 0.3s;
}

.theme-toggle.dark .theme-toggle-slider[b-7bobsmnp7p] {
    transform: translateX(1.75rem);
}

/* Enhanced Tip Dialog Styles - Add these to your Home.razor.css */

/* Enhanced modal content */
.enhanced-tip-modal[b-7bobsmnp7p] {
    max-width: 400px;
    border-radius: 12px;
    overflow: hidden;
    animation: enhancedModalFadeIn-b-7bobsmnp7p 0.3s ease;
}

@keyframes enhancedModalFadeIn-b-7bobsmnp7p {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Enhanced modal header */
.enhanced-tip-modal .modal-header[b-7bobsmnp7p] {
    background: linear-gradient(135deg, #0aaf25, #23b73b);
    padding: 16px 20px;
}

.enhanced-tip-modal .close-button[b-7bobsmnp7p] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: background-color 0.2s;
}

    .enhanced-tip-modal .close-button:hover[b-7bobsmnp7p] {
        background-color: rgba(255, 255, 255, 0.2);
    }

/* Enhanced modal body */
.enhanced-tip-modal .modal-body[b-7bobsmnp7p] {
    background-color: var(--menu-background-color);
    padding: 20px;
}

/* Enhanced match teams section */
.enhanced-tip-modal .match-teams[b-7bobsmnp7p] {
    background: var(--background-color);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 16px;
    margin-bottom: 24px;
}

.enhanced-tip-modal .team-logo-large[b-7bobsmnp7p] {
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    border: 2px solid #ddd;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

/* Tip score container */
.tip-score-container[b-7bobsmnp7p] {
    background: var(--background-color);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: -20px;
}

.tip-score-display[b-7bobsmnp7p] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.score-input[b-7bobsmnp7p] {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.team-name-small[b-7bobsmnp7p] {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
    text-align: center;
}

.score-display[b-7bobsmnp7p] {
    width: 60px;
    height: 60px;
    border: 3px solid #ddd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: #333;
    background: #f9f9f9;
    transition: all 0.2s ease;
    position: relative;
}

    .score-display.active[b-7bobsmnp7p] {
        border-color: #0aaf25;
        background: #f0fff0;
        color: #0aaf25;
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(10, 175, 37, 0.2);
    }

.score-separator[b-7bobsmnp7p] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #999;
}

/* Input indicator */
.input-indicator[b-7bobsmnp7p] {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    background: #0aaf25;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    animation: pulse-b-7bobsmnp7p 1.5s infinite;
}

@keyframes pulse-b-7bobsmnp7p {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* Quick scores */
.quick-scores[b-7bobsmnp7p] {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.quick-score-btn[b-7bobsmnp7p] {
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 20px;
    background: white;
    color: #666;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

    .quick-score-btn:hover[b-7bobsmnp7p] {
        background: #0aaf25;
        color: white;
        border-color: #0aaf25;
        transform: translateY(-1px);
    }

/* Number pad */
.number-pad[b-7bobsmnp7p] {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    max-width: 20rem;
    margin: 0 auto;
}

.number-btn[b-7bobsmnp7p] {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #fff, #f5f5f5);
    color: #333;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 2px solid #e0e0e0;
    font-family: inherit;
}

    .number-btn:hover[b-7bobsmnp7p] {
        background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

    .number-btn:active[b-7bobsmnp7p] {
        transform: translateY(0);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .number-btn.zero[b-7bobsmnp7p] {
        grid-column: span 2;
        width: auto;
    }

    .number-btn.clear[b-7bobsmnp7p] {
        background: linear-gradient(135deg, #ff6b6b, #ff5252);
        color: white;
        font-size: 1.2rem;
    }

        .number-btn.clear:hover[b-7bobsmnp7p] {
            background: linear-gradient(135deg, #ff5252, #f44336);
        }

/* Enhanced modal footer */
.enhanced-tip-modal .modal-footer[b-7bobsmnp7p] {
    background-color: #fafafa;
    border-top: 1px solid #eee;
    padding: 20px;
}

.enhanced-tip-modal .btn[b-7bobsmnp7p] {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.2s;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
}

.enhanced-tip-modal .btn-primary[b-7bobsmnp7p] {
    background: linear-gradient(135deg, #0aaf25, #23b73b);
    color: white;
    box-shadow: 0 2px 4px rgba(10, 175, 37, 0.2);
}

    .enhanced-tip-modal .btn-primary:hover[b-7bobsmnp7p] {
        background: linear-gradient(135deg, #23b73b, #2e8b57);
        transform: translateY(-1px);
        box-shadow: 0 4px 8px rgba(10, 175, 37, 0.3);
    }

.enhanced-tip-modal .btn-secondary[b-7bobsmnp7p] {
    background: #f0f0f0;
    color: #666;
    border: 1px solid #ddd;
}

    .enhanced-tip-modal .btn-secondary:hover[b-7bobsmnp7p] {
        background: #e8e8e8;
        color: #555;
    }

/* Responsive adjustments */
@media (max-width: 480px) {
    .enhanced-tip-modal[b-7bobsmnp7p] {
        margin: 20px;
        max-width: none;
    }

        .enhanced-tip-modal .match-teams[b-7bobsmnp7p] {
            padding: 12px;
        }

        .enhanced-tip-modal .match-team[b-7bobsmnp7p] {
            max-width: 90px;
        }

        .enhanced-tip-modal .team-logo-large[b-7bobsmnp7p] {
            width: 40px;
            height: 40px;
        }

        .enhanced-tip-modal .team-name-large[b-7bobsmnp7p] {
            font-size: 0.8rem;
        }

    .score-display[b-7bobsmnp7p] {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .number-btn[b-7bobsmnp7p] {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .number-pad[b-7bobsmnp7p] {
        max-width: 200px;
        gap: 10px;
    }

    .quick-scores[b-7bobsmnp7p] {
        gap: 6px;
    }

    .quick-score-btn[b-7bobsmnp7p] {
        padding: 4px 8px;
        font-size: 0.8rem;
    }
}

/* Dark mode support */
:global([data-theme="dark"]) .tip-score-container[b-7bobsmnp7p],
:global([data-theme="dark"]) .enhanced-tip-modal .match-teams[b-7bobsmnp7p] {
    background: var(--surface-color);
    color: var(--text-color);
}

:global([data-theme="dark"]) .score-display[b-7bobsmnp7p] {
    background: var(--background-color);
    color: var(--text-color);
    border-color: #555;
}

    :global([data-theme="dark"]) .score-display.active[b-7bobsmnp7p] {
        background: rgba(10, 175, 37, 0.2);
        border-color: #0aaf25;
        color: #0aaf25;
    }

:global([data-theme="dark"]) .number-btn[b-7bobsmnp7p] {
    background: linear-gradient(135deg, var(--surface-color), var(--background-color));
    color: var(--text-color);
    border-color: #555;
}

    :global([data-theme="dark"]) .number-btn:hover[b-7bobsmnp7p] {
        background: linear-gradient(135deg, #555, #444);
    }

:global([data-theme="dark"]) .quick-score-btn[b-7bobsmnp7p] {
    background: var(--surface-color);
    color: var(--text-color);
    border-color: #555;
}

:global([data-theme="dark"]) .enhanced-tip-modal .modal-body[b-7bobsmnp7p] {
    background-color: var(--background-color);
}

:global([data-theme="dark"]) .enhanced-tip-modal .modal-footer[b-7bobsmnp7p] {
    background-color: var(--background-color);
    border-top-color: #555;
}

/* Dropdown menu */
.dropdown-menu[b-7bobsmnp7p] {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 220px;
    background-color: var(--surface-color);
    border-radius: var(--border-radius);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    z-index: 1050;
    overflow: hidden;
    margin-top: 11px;
    /*animation: fadeIn 0.05s ease;*/
}

@keyframes fadeIn-b-7bobsmnp7p {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu.show[b-7bobsmnp7p] {
    display: block;
}

.dropdown-item[b-7bobsmnp7p] {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.2s;
    font-size: 0.95rem;
}

    .dropdown-item:hover[b-7bobsmnp7p] {
        background-color: rgba(33, 150, 243, 0.08);
    }

    .dropdown-item i[b-7bobsmnp7p] {
        width: 24px;
        margin-right: 12px;
        color: var(--primary-color);
        font-size: 1rem;
        text-align: center;
    }

.dropdown-divider[b-7bobsmnp7p] {
    height: 1px;
    background-color: rgba(0, 0, 0, 0.08);
    margin: 6px 0;
}

/* Other sections styles */
.opponent-list[b-7bobsmnp7p], .ranking-list[b-7bobsmnp7p], .protocol-list[b-7bobsmnp7p] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 16px 16px;
}

.opponent-item[b-7bobsmnp7p], .ranking-item[b-7bobsmnp7p], .protocol-item[b-7bobsmnp7p] {
    padding: 12px;
    background-color: var(--surface-color);
    border-radius: var(--border-radius);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Responsive styles */
@media (min-width: 768px) {
    .container.menu-pinned[b-7bobsmnp7p] {
        display: flex;
    }

        .container.menu-pinned .side-menu[b-7bobsmnp7p] {
            /*position: relative;
            transform: translateX(0);
            top: 0;*/
        }

    main.menu-pinned[b-7bobsmnp7p] {
        margin-left: 15.5rem;
        width: calc(100% - var(--side-menu-width));
    }
}

@media (max-width: 767px) {
    

    .match-table tbody tr[b-7bobsmnp7p] {
        cursor: pointer;
    }
}

@media (max-width: 767px) and (orientation: landscape) {
    .container[b-7bobsmnp7p] {
        height: calc(100% - var(--header-height) - var(--secondary-toolbar-height));
    }

    .side-menu[b-7bobsmnp7p] {
        height: calc(100% - var(--header-height) - var(--secondary-toolbar-height));
    }
}

@media (max-width: 480px) {
    .header-right[b-7bobsmnp7p] {
        width: 140px;
    }

    .header-center[b-7bobsmnp7p] {
        position: static;
        transform: none;
    }
}

/* Campaign section styles */
/* Campaign section styles */
.campaign-section[b-7bobsmnp7p] {
    margin-bottom: 24px;
}

.campaign-header[b-7bobsmnp7p] {
    font-family: Helvetica;
    color: #0aaf25;
    padding: 10px 16px;
    border-radius: 4px 4px 0 0;
    display: flex;
    align-items: center;
}

.campaign-sport[b-7bobsmnp7p] {
    font-size: 1rem;
    font-weight: bold;
}

.campaign-separator[b-7bobsmnp7p] {
    margin: 0 12px;
    opacity: 0.7;
}

.campaign-name[b-7bobsmnp7p] {
    font-weight: 400;
    font-size: 1rem;
}

/* Match tables container */
.match-tables-container[b-7bobsmnp7p] {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: auto;
}

/* Loading state */
.loading-container[b-7bobsmnp7p] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

/* Empty state */
.empty-state[b-7bobsmnp7p] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
}

    .empty-state i[b-7bobsmnp7p] {
        font-size: 3rem;
        color: var(--text-secondary-color);
        opacity: 0.3;
        margin-bottom: 20px;
    }

/* Match cards container */
.match-cards-container[b-7bobsmnp7p] {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: auto;
    padding: 0 16px;
}

/* Cards container inside campaign section */
.campaign-section .cards-container[b-7bobsmnp7p] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    padding: 16px;
    background-color: var(--surface-color);
}

/* Dark mode */
:global([data-theme="dark"]) .campaign-header[b-7bobsmnp7p] {
    background-color: #1976D2;
}

/* Table styes */
.campaign-section .match-table-container[b-7bobsmnp7p] {
    border-radius: 0 0 4px 4px;
    /*overflow: hidden;*/
}

.campaign-section .match-table[b-7bobsmnp7p] {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.1rem;
}

.campaign-container[b-7bobsmnp7p] {
    padding: 0 16px;
    margin-bottom: 20px;
}

.campaign-grid[b-7bobsmnp7p] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.campaign-card[b-7bobsmnp7p] {
    display: flex;
    flex-direction: column;
    background-color: var(--surface-color);
    border-radius: 8px;
    border: 1px solid #eee;
    overflow: hidden;
    transition: all 0.2s ease;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

    .campaign-card:hover[b-7bobsmnp7p] {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        /*transform: translateY(-2px);*/
        /*text-decoration-style:1;*/
    }

    .campaign-card.selected[b-7bobsmnp7p] {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 2px rgba(28, 169, 201, 0.2);
    }

.campaign-card-body[b-7bobsmnp7p] {
    padding: 16px;
    flex: 1;
}

.campaign-name[b-7bobsmnp7p] {
    font-size: 1rem;
    color: #0aaf25;
}

.campaign-dates[b-7bobsmnp7p] {
    font-size: 0.9rem;
    color: var(--text-secondary-color);
    margin-bottom: 8px;
}

.campaign-info[b-7bobsmnp7p] {
    font-size: 0.85rem;
    color: var(--text-secondary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.campaign-action[b-7bobsmnp7p] {
    padding: 12px 16px;
    background-color: rgba(0, 0, 0, 0.02);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.action-text[b-7bobsmnp7p] {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

    .action-text.selected[b-7bobsmnp7p] {
        background-color: rgba(244, 67, 54, 0.1);
        color: var(--error-color);
    }

.campaign-actions[b-7bobsmnp7p] {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
}

/* Pagination styles */
.pagination[b-7bobsmnp7p] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 16px 0;
}

.pagination-btn[b-7bobsmnp7p] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background-color: #f0f0f0;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.2s ease;
}

    .pagination-btn:hover:not([disabled])[b-7bobsmnp7p] {
        background-color: #e0e0e0;
    }

    .pagination-btn.active[b-7bobsmnp7p] {
        background-color: var(--primary-color);
        color: white;
    }

    .pagination-btn[disabled][b-7bobsmnp7p] {
        opacity: 0.5;
        cursor: not-allowed;
    }

/* Dark mode adjustments */
:global([data-theme="dark"]) .campaign-card[b-7bobsmnp7p] {
    border-color: #333;
    background-color: var(--surface-color);
}

:global([data-theme="dark"]) .campaign-action[b-7bobsmnp7p] {
    background-color: rgba(255, 255, 255, 0.03);
    border-top-color: rgba(255, 255, 255, 0.05);
}

:global([data-theme="dark"]) .pagination-btn[b-7bobsmnp7p] {
    background-color: #333;
}

    :global([data-theme="dark"]) .pagination-btn:hover:not([disabled])[b-7bobsmnp7p] {
        background-color: #444;
    }

@media (max-width: 767px) {
    .campaign-grid[b-7bobsmnp7p] {
        grid-template-columns: 1fr;
    }
}

/* Add these styles to the Home.razor.css file */

/* Match history specific styles */
.match-points[b-7bobsmnp7p] {
    font-weight: bold;
    text-align: center;
    font-size: 1rem;
    color: var(--primary-color);
}

#Tabelle_History tr:hover[b-7bobsmnp7p] {
    background-color: rgba(33, 150, 243, 0.05);
}

/* Make the table rows in history view not clickable */
#Tabelle_History tbody tr[b-7bobsmnp7p] {
    cursor: default;
}

/* Color coding for match points */
.match-points[data-points="3"][b-7bobsmnp7p] {
    color: var(--success-color);
}

.match-points[data-points="1"][b-7bobsmnp7p] {
    color: var(--primary-color);
}

.match-points[data-points="0"][b-7bobsmnp7p] {
    color: var(--error-color);
}

/* Add these styles to Home.razor.css */

/* Style for team logo images in the match table */
.team-logo img[b-7bobsmnp7p] {
    max-width: 30px;
    max-height: 30px;
    object-fit: contain;
    vertical-align: middle;
}

/* Style for larger team logo images in the tip dialog */
.team-logo-large img[b-7bobsmnp7p] {
    max-width: 50px;
    max-height: 50px;
    object-fit: contain;
    background-color: transparent;
}

/* Adjust team logo cell vertical alignment */
.match-table .team-logo[b-7bobsmnp7p] {
    vertical-align: middle;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* Match Cards View Styles */
.view-toggle-container[b-7bobsmnp7p] {
    display: flex;
    justify-content: flex-end;
    padding: 8px 16px;
    margin-bottom: 12px;
}

.view-toggle[b-7bobsmnp7p] {
    display: flex;
    background-color: var(--background-color);
    border-radius: 20px;
    padding: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.view-toggle-option[b-7bobsmnp7p] {
    padding: 6px 12px;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 16px;
    color: var(--text-secondary-color);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .view-toggle-option.active[b-7bobsmnp7p] {
        background-color: var(--primary-color);
        color: white;
    }

.cards-container[b-7bobsmnp7p] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    padding: 16px;
    overflow-y: auto;
    max-height: calc(100vh - var(--header-height) - var(--secondary-toolbar-height) - 80px);
}

.match-card[b-7bobsmnp7p] {
    background-color: var(--surface-color);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

    .match-card:hover[b-7bobsmnp7p] {
        transform: translateY(-3px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
        cursor: pointer;
    }

.match-card-header[b-7bobsmnp7p] {
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background-color: rgba(0, 0, 0, 0.02);
}

.match-date[b-7bobsmnp7p], .match-time[b-7bobsmnp7p] {
    font-size: 0.9rem;
    color: var(--text-secondary-color);
}

.match-card-teams[b-7bobsmnp7p] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 16px;
    flex: 1;
}

.team[b-7bobsmnp7p] {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40%;
    text-align: center;
}

.team-logo[b-7bobsmnp7p] {
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

    .team-logo i[b-7bobsmnp7p] {
        font-size: 2rem;
    }

    .team-logo img[b-7bobsmnp7p] {
        max-width: 45px;
        max-height: 45px;
        object-fit: contain;
    }

.team-name[b-7bobsmnp7p] {
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.3;
    max-height: 2.6em;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.match-score[b-7bobsmnp7p] {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 4px;
    background-color: rgba(28, 169, 201, 0.05);
}

.match-card-footer[b-7bobsmnp7p] {
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background-color: rgba(0, 0, 0, 0.02);
}

.user-tip[b-7bobsmnp7p] {
    font-size: 0.9rem;
    color: var(--text-secondary-color);
}

    .user-tip span[b-7bobsmnp7p] {
        font-weight: 600;
        color: var(--text-color);
    }

.tips-count[b-7bobsmnp7p] {
    font-size: 0.85rem;
    color: var(--text-secondary-color);
    display: flex;
    align-items: center;
}

    .tips-count i[b-7bobsmnp7p] {
        margin-right: 5px;
    }

/* Responsive adjustments */
@media (max-width: 992px) {
    .cards-container[b-7bobsmnp7p] {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 576px) {
    .cards-container[b-7bobsmnp7p] {
        grid-template-columns: 1fr;
    }
}

/* Dark mode specific adjustments */
:global([data-theme="dark"]) .match-card[b-7bobsmnp7p] {
    border-color: rgba(255, 255, 255, 0.05);
}

:global([data-theme="dark"]) .match-card-header[b-7bobsmnp7p],
:global([data-theme="dark"]) .match-card-footer[b-7bobsmnp7p] {
    background-color: rgba(255, 255, 255, 0.02);
}

:global([data-theme="dark"]) .match-score[b-7bobsmnp7p] {
    background-color: rgba(28, 169, 201, 0.1);
}

:global([data-theme="dark"]) .view-toggle[b-7bobsmnp7p] {
    background-color: var(--surface-color);
}

/* Empty state styles */
.empty-state[b-7bobsmnp7p] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
}

    .empty-state i[b-7bobsmnp7p] {
        font-size: 3rem;
        color: var(--text-secondary-color);
        opacity: 0.3;
        margin-bottom: 20px;
    }

    .empty-state p[b-7bobsmnp7p] {
        font-size: 1.1rem;
        color: var(--text-secondary-color);
    }

/* Loading state */
.loading-card[b-7bobsmnp7p] {
    background-color: var(--surface-color);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

    .loading-card .loading-spinner[b-7bobsmnp7p] {
        margin-bottom: 16px;
    }

/* Toggle item in dropdown menu */
.toggle-item[b-7bobsmnp7p] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: default !important;
}

    .toggle-item:hover[b-7bobsmnp7p] {
        background-color: rgba(33, 150, 243, 0.08);
    }

.toggle-item-text[b-7bobsmnp7p] {
    display: flex;
    align-items: center;
}

    .toggle-item-text i[b-7bobsmnp7p] {
        width: 24px;
        margin-right: 12px;
        color: var(--primary-color);
        font-size: 1rem;
        text-align: center;
    }

.toggle-item[disabled][b-7bobsmnp7p] {
    opacity:0.5 !important;
}
/* Toggle switch styling */
.toggle-switch[b-7bobsmnp7p] {
    position: relative;
    width: 36px;
    height: 20px;
    background-color: #ccc;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .toggle-switch.active[b-7bobsmnp7p] {
        background-color: #0aaf25;
    }

.toggle-switch-slider[b-7bobsmnp7p] {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: white;
    transition: transform 0.3s;
}

.toggle-switch.active .toggle-switch-slider[b-7bobsmnp7p] {
    transform: translateX(16px);
}

/* Dark mode specific styles */
:global([data-theme="dark"]) .toggle-switch[b-7bobsmnp7p] {
    background-color: #555;
}

    :global([data-theme="dark"]) .toggle-switch.active[b-7bobsmnp7p] {
        background-color: #0aaf25;
    }

/* Updated match table styles for better alignment */
.match-table[b-7bobsmnp7p] {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    font-size: 0.95rem;
    border-spacing: 0;
    background-color: var(--surface-color);
}

    /* Updated column widths */
    .match-table th:nth-child(1)[b-7bobsmnp7p], .match-table td:nth-child(1)[b-7bobsmnp7p] {
        width: 100px;
    }
    /* Datum */
    .match-table th:nth-child(2)[b-7bobsmnp7p], .match-table td:nth-child(2)[b-7bobsmnp7p] {
        width: 80px;
    }
    /* Uhrzeit */
    .match-table th:nth-child(3)[b-7bobsmnp7p], .match-table td:nth-child(3)[b-7bobsmnp7p] {
        width: auto;
    }
    /* Spielgegner 1 */
    .match-table th:nth-child(4)[b-7bobsmnp7p], .match-table td:nth-child(4)[b-7bobsmnp7p] {
        width: 90px;
        text-align: center;
    }
    /* Spielstand */
    .match-table th:nth-child(5)[b-7bobsmnp7p], .match-table td:nth-child(5)[b-7bobsmnp7p] {
        width: auto;
    }
    /* Spielgegner 2 */
    .match-table th:nth-child(6)[b-7bobsmnp7p], .match-table td:nth-child(6)[b-7bobsmnp7p] {
        width: 90px;
        text-align: center;
    }
    /* Mein Tipp */
    .match-table th:nth-child(7)[b-7bobsmnp7p], .match-table td:nth-child(7)[b-7bobsmnp7p] {
        width: 80px;
        text-align: center;
    }
    /* Tipps */
    .match-table th:nth-child(8)[b-7bobsmnp7p], .match-table td:nth-child(8)[b-7bobsmnp7p] {
        width: 100px;
        text-align: center;
    }
    /* Status */

    /* Style the header row */
    .match-table thead[b-7bobsmnp7p] {
        background-color: #f1f1f1;
    }

    .match-table th[b-7bobsmnp7p] {
        padding: 12px 8px;
        text-align: left;
        font-weight: 400;
        color: var(--text-color);
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    /* Style the data cells */
    .match-table td[b-7bobsmnp7p] {
        padding: 12px 8px;
        vertical-align: middle;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

/* Team name and logo styling */
.team-container[b-7bobsmnp7p] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.team-logo[b-7bobsmnp7p] {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .team-logo img[b-7bobsmnp7p] {
        max-width: 24px;
        max-height: 24px;
        object-fit: contain;
    }

    .team-logo i[b-7bobsmnp7p] {
        font-size: 1.2rem;
        color: var(--primary-color);
    }

/* Score column styling */
.score[b-7bobsmnp7p] {
    font-weight: bold;
    text-align: center;
}

/* Status badges */
.status-badge[b-7bobsmnp7p] {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    text-align: center;
}

.status-planned[b-7bobsmnp7p] {
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--success-color);
}

.status-cancelled[b-7bobsmnp7p] {
    background-color: rgba(244, 67, 54, 0.1);
    color: var(--error-color);
}

/* Campaign header styling */
.campaign-header[b-7bobsmnp7p] {
    color: #0aaf25;
    padding: 10px 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.campaign-sport[b-7bobsmnp7p] {
    margin-right: 8px;
}

.campaign-separator[b-7bobsmnp7p] {
    margin: 0 8px;
}

/* Dark mode adjustments */
:global([data-theme="dark"]) .match-table thead[b-7bobsmnp7p] {
    background-color: #333;
}

:global([data-theme="dark"]) .match-table th[b-7bobsmnp7p],
:global([data-theme="dark"]) .match-table td[b-7bobsmnp7p] {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .match-table[b-7bobsmnp7p] {
        font-size: 0.85rem;
    }

        .match-table th[b-7bobsmnp7p],
        .match-table td[b-7bobsmnp7p] {
            padding: 8px 4px;
        }

            /* Adjust column widths for mobile */
            .match-table th:nth-child(1)[b-7bobsmnp7p], .match-table td:nth-child(1)[b-7bobsmnp7p] {
                width: 80px;
            }
            /* Datum */
            .match-table th:nth-child(2)[b-7bobsmnp7p], .match-table td:nth-child(2)[b-7bobsmnp7p] {
                width: 70px;
            }
    /* Uhrzeit */
}

/* Match history specific styles */
.match-points[b-7bobsmnp7p] {
    font-weight: bold;
    text-align: center;
}

    .match-points[data-points="3"][b-7bobsmnp7p] {
        color: var(--success-color);
    }

    .match-points[data-points="1"][b-7bobsmnp7p] {
        color: var(--primary-color);
    }

    .match-points[data-points="0"][b-7bobsmnp7p] {
        color: var(--error-color);
    }

/* History cards styling */
.history-card .match-card-header[b-7bobsmnp7p] {
    position: relative;
}

.history-card .match-points[b-7bobsmnp7p] {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    padding: 2px 6px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

    .history-card .match-points[data-points="3"][b-7bobsmnp7p] {
        background-color: rgba(76, 175, 80, 0.1);
    }

    .history-card .match-points[data-points="1"][b-7bobsmnp7p] {
        background-color: rgba(33, 150, 243, 0.1);
    }

    .history-card .match-points[data-points="0"][b-7bobsmnp7p] {
        background-color: rgba(244, 67, 54, 0.1);
    }


/* Add these styles to your Home.razor.css file */

/* Common styles for all screen sizes */
.match-table-container[b-7bobsmnp7p] {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
    box-shadow: var(--shadow);
    background-color: var(--surface-color);
}

/* Base table styling */
.match-table[b-7bobsmnp7p] {
    border-collapse: collapse;
    background-color: var(--surface-color);
    margin: 0;
    padding: 0;
    font-size: 0.95rem;
}

/* Responsive behavior for different screen sizes */
@media (min-width: 1024px) {
    /* Desktop styles */
    .match-table[b-7bobsmnp7p] {
        width: 100%; /* Full width on desktop */
        min-width: 100%;
        table-layout: auto; /* Allow columns to size based on content */
    }

        /* Set column widths for desktop */
        .match-table th:nth-child(1)[b-7bobsmnp7p], .match-table td:nth-child(1)[b-7bobsmnp7p] {
            width: 8%;
        }
        /* Datum */
        .match-table th:nth-child(2)[b-7bobsmnp7p], .match-table td:nth-child(2)[b-7bobsmnp7p] {
            width: 7%;
        }
        /* Uhrzeit */
        .match-table th:nth-child(3)[b-7bobsmnp7p], .match-table td:nth-child(3)[b-7bobsmnp7p] {
            width: 25%;
        }
        /* Spielgegner 1 */
        .match-table th:nth-child(4)[b-7bobsmnp7p], .match-table td:nth-child(4)[b-7bobsmnp7p] {
            width: 10%;
        }
        /* Spielstand */
        .match-table th:nth-child(5)[b-7bobsmnp7p], .match-table td:nth-child(5)[b-7bobsmnp7p] {
            width: 25%;
        }
        /* Spielgegner 2 */
        .match-table th:nth-child(6)[b-7bobsmnp7p], .match-table td:nth-child(6)[b-7bobsmnp7p] {
            width: 8%;
        }
        /* Mein Tipp */
        .match-table th:nth-child(7)[b-7bobsmnp7p], .match-table td:nth-child(7)[b-7bobsmnp7p] {
            width: 7%;
        }
        /* Tipps */
        .match-table th:nth-child(8)[b-7bobsmnp7p], .match-table td:nth-child(8)[b-7bobsmnp7p] {
            width: 10%;
        }
    /* Status */
}

@media (min-width: 768px) and (max-width: 1023px) {
    /* Tablet styles */
    .match-table[b-7bobsmnp7p] {
        width: 100%;
        min-width: 900px; /* Minimum width to prevent cramping */
    }
}

@media (max-width: 767px) {
    /* Mobile styles */
    .match-table[b-7bobsmnp7p] {
        min-width: 900px; /* Force minimum width on mobile */
        /*width: max-content;*/
    }

    /* Show scroll hint on mobile */
    .table-scroll-hint[b-7bobsmnp7p] {
        display: block;
    }
}

/* Table headers */
.match-table thead[b-7bobsmnp7p] {
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: var(--table-header-background);
}

.match-table th[b-7bobsmnp7p] {
    padding: 12px 8px;
    text-align: left;
    font-weight: 400;
    white-space: nowrap;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Table cells */
.match-table td[b-7bobsmnp7p] {
    padding: 12px 8px;
    vertical-align: middle;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Team container styling */
.team-container[b-7bobsmnp7p] {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.team-name-text[b-7bobsmnp7p] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Scroll hint */
.table-scroll-hint[b-7bobsmnp7p] {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.2);
    color: var(--text-color);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    opacity: 0.8;
    pointer-events: none;
    transition: opacity 0.5s ease;
    z-index: 10;
    display: none; /* Hide by default, show on mobile */
}

/* Make scroll hint visible in dark mode */
:global([data-theme="dark"]) .table-scroll-hint[b-7bobsmnp7p] {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--text-color);
}

/* Hide scroll hint when not needed or after scrolling */
.table-scroll-hint.hide[b-7bobsmnp7p] {
    opacity: 0;
}

/* Fixed-width columns that need consistent sizing */
.score[b-7bobsmnp7p] {
    text-align: center;
    font-weight: bold;
}

.user-tip[b-7bobsmnp7p] {
    text-align: center;
}

.tips-count[b-7bobsmnp7p] {
    text-align: center;
}

/* iOS/Safari specific fixes */
.match-table-container[b-7bobsmnp7p]::-webkit-scrollbar {
    -webkit-appearance: none;
    height: 7px;
}

.match-table-container[b-7bobsmnp7p]::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0,0,0,.3);
}

/* Ensure parent containers don't restrict scrolling on mobile */
@media (max-width: 767px) {
    .page.active[b-7bobsmnp7p],
    .dummy-content[b-7bobsmnp7p],
    .match-tables-container[b-7bobsmnp7p],
    .campaign-section[b-7bobsmnp7p] {
        overflow: visible !important;
    }
}

/* 
This CSS file contains fixes for the following items:
1. wrong columnheader width - Fix columns to have optimal widths
2. tableheader is scrolling - Make table headers fixed
3. no horizontal table scrollbars - Remove horizontal scrollbars
4. search function - Fix the search functionality 
5. user profile dialog - Create a user profile editing dialog similar to onboarding
6. onboarding dialog same size - Keep onboarding dialogs consistent size
7. registration form size - Reduce registration form height on mobile
8. main menu behavior - Close menu on click outside & increase animation speed
*/

/* 1. FIX: Wrong column header width - Update column widths for optimal display */
.match-table[b-7bobsmnp7p] {
    width: 100%;
    min-width: 1200px; /* Ensure enough width for all data */
    table-layout: fixed; /* Use fixed layout for better control */
}

    /* Optimized column widths based on content */
    .match-table th:nth-child(1)[b-7bobsmnp7p], .match-table td:nth-child(1)[b-7bobsmnp7p] {
        width: 5rem; /* Datum - smaller */
        min-width: 5rem;
    }

    .match-table th:nth-child(2)[b-7bobsmnp7p], .match-table td:nth-child(2)[b-7bobsmnp7p] {
        width: 4rem; /* Uhrzeit - smaller */
        min-width: 4rem;
    }

    .match-table th:nth-child(3)[b-7bobsmnp7p], .match-table td:nth-child(3)[b-7bobsmnp7p],
    .match-table th:nth-child(6)[b-7bobsmnp7p], .match-table td:nth-child(6)[b-7bobsmnp7p] {
        max-width: 8rem;
    }

    .match-table th:nth-child(4)[b-7bobsmnp7p], .match-table td:nth-child(4)[b-7bobsmnp7p],
    .match-table th:nth-child(5)[b-7bobsmnp7p], .match-table td:nth-child(5)[b-7bobsmnp7p] {
        width: 3rem; /* Logo columns - smaller */
        min-width: 3rem;
        text-align: center;
    }

    .match-table th:nth-child(7)[b-7bobsmnp7p], .match-table td:nth-child(7)[b-7bobsmnp7p] {
        width: 5rem; /* Score - smaller */
        min-width: 5rem;
        text-align: center;
    }

    .match-table th:nth-child(8)[b-7bobsmnp7p], .match-table td:nth-child(8)[b-7bobsmnp7p] {
        width: 5rem; /* Mein Tipp - smaller */
        min-width: 5rem;
        text-align: center;
    }

    .match-table th:nth-child(9)[b-7bobsmnp7p], .match-table td:nth-child(9)[b-7bobsmnp7p] {
        width: 4rem; /* Tipps - smaller */
        min-width: 4rem;
        text-align: center;
    }

    .match-table th:nth-child(10)[b-7bobsmnp7p], .match-table td:nth-child(10)[b-7bobsmnp7p] {
        width: 7rem; /* Status - medium */
        min-width: 7rem;
        text-align: center;
    }

/* 2. FIX: Table headers should be fixed and not scroll */
.match-table-container[b-7bobsmnp7p] {
    overflow: auto;
    max-height: calc(100vh - 115px);
    position: relative;
}

.match-table thead[b-7bobsmnp7p] {
    position: sticky;
    top: 0;
    z-index: 11;
    background-color: var(--table-header-background);
}

    .match-table thead th[b-7bobsmnp7p] {
        position: sticky;
        top: 0;
        z-index: 11;
        background-color: var(--table-header-background);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

/* 3. FIX: No horizontal table scrollbars */
/* Hide horizontal scrollbar but keep functionality */
.match-table-container[b-7bobsmnp7p]::-webkit-scrollbar:horizontal {
    height: 0;
    display: none;
}

/* 4. FIX: Search function */
/* This requires JavaScript changes - adding script below */

/* 5. FIX: User profile dialog */
/* Create styles for user profile dialog similar to onboarding */
.profile-dialog-modal[b-7bobsmnp7p] {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    /*transition: opacity 0.3s ease;*/
}

    .profile-dialog-modal.show[b-7bobsmnp7p] {
        opacity: 1;
        display: flex;
    }

.profile-dialog-content[b-7bobsmnp7p] {
    background-color: var(--surface-color);
    width: 90%;
    max-width: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    /*animation: modalSlideIn 0.3s ease;*/
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

/* 6. FIX: Onboarding dialog same size */
.modal-content[b-7bobsmnp7p] {
    width: 90%;
    max-width: 450px; /* Consistent width */
    height: auto;
    max-height: 600px; /* Consistent max height */
}

/* All modal bodies should scroll if content is too long */
.modal-body[b-7bobsmnp7p] {
    overflow-y: auto;
    flex: 1;
}

/* 7. FIX: Registration form size */
@media (max-width: 480px) {
    .login-card[b-7bobsmnp7p] {
        max-height: calc(100vh - 70px); /* Leave space for links */
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    .login-page[b-7bobsmnp7p] {
        padding-bottom: 60px; /* Space for footer links */
        position: relative;
    }

    /* Footer links for mobile */
    .login-footer-links[b-7bobsmnp7p] {
        position: absolute;
        bottom: 10px;
        left: 0;
        right: 0;
        text-align: center;
        padding: 10px;
        z-index: 10;
    }

        .login-footer-links a[b-7bobsmnp7p] {
            color: white;
            margin: 0 10px;
            text-decoration: none; /* No underline as requested */
            font-size: 0.9rem;
            padding: 5px;
        }

    /* Ensure login container doesn't overflow */
    .login-container[b-7bobsmnp7p] {
        padding-bottom: 60px;
    }

    /* Make buttons smaller on mobile */
    .login-card .btn-login[b-7bobsmnp7p],
    .login-card .secondary-button[b-7bobsmnp7p] {
        padding: 8px 12px;
        font-size: 0.95rem;
    }

    /* Reduce form padding on mobile */
    .login-card[b-7bobsmnp7p] {
        padding: 1.5rem 1rem;
    }

        /* Reduce form field height */
        .login-card .form-group[b-7bobsmnp7p] {
            margin-bottom: 0.9rem;
        }

        .login-card input[b-7bobsmnp7p] {
            padding: 0.6rem;
        }
}

/* 8. FIX: Main menu behavior */
/* This requires JavaScript changes - adding script below */
.side-menu[b-7bobsmnp7p] {
    transition: transform 0.2s ease; /* Faster animation (0.3s -> 0.2s) */
}

/* JavaScript fixes for search and main menu behavior */

/* Add these styles to Home.razor.css */

/* Hall of Fame styles with campaign headers */
.rank[b-7bobsmnp7p] {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: rgba(28, 169, 201, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.user-avatar[b-7bobsmnp7p] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.1);
}

    .user-avatar img[b-7bobsmnp7p] {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .user-avatar i[b-7bobsmnp7p] {
        font-size: 1.6rem;
        color: rgba(0, 0, 0, 0.2);
    }

/* Campaign Details Dialog styles */
.campaign-details-modal[b-7bobsmnp7p] {
    max-width: 550px;
}

.campaign-organization-info[b-7bobsmnp7p] {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
}

.organization-logo[b-7bobsmnp7p] {
    width: 64px;
    height: 64px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

    .organization-logo img[b-7bobsmnp7p] {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .organization-logo i[b-7bobsmnp7p] {
        font-size: 2rem;
        color: var(--primary-color);
    }

.organization-details h4[b-7bobsmnp7p] {
    margin: 0 0 4px 0;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.organization-contact[b-7bobsmnp7p] {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary-color);
}

.campaign-details-section[b-7bobsmnp7p],
.campaign-participants-section[b-7bobsmnp7p] {
    margin-bottom: 20px;
}

.campaign-details-title[b-7bobsmnp7p] {
    font-size: 1rem;
    margin: 0 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-color);
}

.campaign-details-row[b-7bobsmnp7p] {
    display: flex;
    margin-bottom: 8px;
}

.detail-label[b-7bobsmnp7p] {
    width: 120px;
    font-weight: 500;
    color: var(--text-secondary-color);
    flex-shrink: 0;
}

.detail-value[b-7bobsmnp7p] {
    flex: 1;
}

.participants-count[b-7bobsmnp7p] {
    font-size: 0.9rem;
    color: var(--text-secondary-color);
    margin-bottom: 12px;
}

.participants-list[b-7bobsmnp7p] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.participant-item[b-7bobsmnp7p] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0.02);
}

.participant-avatar[b-7bobsmnp7p] {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.1);
}

    .participant-avatar img[b-7bobsmnp7p] {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .participant-avatar i[b-7bobsmnp7p] {
        font-size: 1.2rem;
        color: rgba(0, 0, 0, 0.2);
    }

.participant-name[b-7bobsmnp7p] {
    flex: 1;
    font-size: 0.95rem;
}

.participant-points[b-7bobsmnp7p] {
    font-weight: 500;
    color: var(--primary-color);
}

.more-participants[b-7bobsmnp7p] {
    text-align: center;
    padding: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary-color);
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: 4px;
    margin-top: 4px;
}

.danger-button[b-7bobsmnp7p] {
    background-color: rgba(244, 67, 54, 0.1);
    color: var(--error-color);
}

    .danger-button:hover[b-7bobsmnp7p] {
        background-color: rgba(244, 67, 54, 0.2);
    }

/* Dark mode styles */
:global([data-theme="dark"]) .campaign-details-row[b-7bobsmnp7p],
:global([data-theme="dark"]) .campaign-organization-info[b-7bobsmnp7p],
:global([data-theme="dark"]) .campaign-details-title[b-7bobsmnp7p] {
    border-color: rgba(255, 255, 255, 0.1);
}

:global([data-theme="dark"]) .participant-item[b-7bobsmnp7p],
:global([data-theme="dark"]) .more-participants[b-7bobsmnp7p] {
    background-color: rgba(255, 255, 255, 0.05);
}

:global([data-theme="dark"]) .organization-logo[b-7bobsmnp7p] {
    background-color: rgba(255, 255, 255, 0.05);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .campaign-details-row[b-7bobsmnp7p] {
        flex-direction: column;
        margin-bottom: 12px;
    }

    .detail-label[b-7bobsmnp7p] {
        width: 100%;
        margin-bottom: 4px;
    }
}
/* _content/SimpliMed.PWA.TippMeister/Components/Pages/JoinCampaign.razor.rz.scp.css */
/* Inherit base styles from ConfirmEmail */
.login-page[b-bppzk1equj] {
    min-height: 100vh;
    width: 100%;
    background-color: rgb(236,236,236);
    /*background-image: url("/background.jpg");*/
    background-size: cover;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Header styles */
header[b-bppzk1equj] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    width: 100%;
}

.logo-container[b-bppzk1equj] {
    display: flex;
    align-items: center;
}

.cdu-logo[b-bppzk1equj] {
    height: 40px;
    width: auto;
}

.app-title[b-bppzk1equj] {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Login container */
.login-container[b-bppzk1equj] {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 1rem;
}

.login-card[b-bppzk1equj] {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 100%;
    max-width: 450px;
    display: flex;
    min-height: 35.5rem;
    max-height: 35.5rem;
    flex-direction: column;
    gap: 1.5rem;
    overflow-y: auto;
}

.login-title[b-bppzk1equj] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Loading content */
.loading-content[b-bppzk1equj] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 1rem;
}

.spinner[b-bppzk1equj] {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #0aaf25;
    border-radius: 50%;
    animation: spin-b-bppzk1equj 1s linear infinite;
}

@keyframes spin-b-bppzk1equj {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Error content */
.error-content[b-bppzk1equj] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-align: center;
    gap: 1.5rem;
}

.error-icon[b-bppzk1equj] {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-title[b-bppzk1equj] {
    font-size: 1.3rem;
    font-weight: 600;
    color: #e74c3c;
    margin: 0;
}

.error-text[b-bppzk1equj] {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}

/* Campaign content */
.campaign-content[b-bppzk1equj] {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    text-align: center;
    gap: 1.5rem;
}

.campaign-icon[b-bppzk1equj] {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trophy-icon[b-bppzk1equj] {
    width: 100%;
    height: auto;
}

.icon[b-bppzk1equj] {
    width: 100%;
    height: auto;
}

/* Campaign details */
.campaign-details[b-bppzk1equj] {
    width: 100%;
    margin-bottom: 1rem;
}

.campaign-name[b-bppzk1equj] {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.campaign-organizer[b-bppzk1equj] {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.campaign-period[b-bppzk1equj] {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.share-id-display[b-bppzk1equj] {
    background-color: #f8f9fa;
    border: 2px dashed #0aaf25;
    border-radius: 6px;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.share-label[b-bppzk1equj] {
    color: #666;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 0.25rem;
}

.share-id[b-bppzk1equj] {
    font-family: 'Courier New', monospace;
    font-size: 1.2rem;
    font-weight: bold;
    color: #0aaf25;
    letter-spacing: 2px;
}

/* Already joined */
.already-joined[b-bppzk1equj] {
    width: 100%;
    text-align: center;
}

.success-text[b-bppzk1equj] {
    color: #27ae60;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.check-icon[b-bppzk1equj] {
    width: 20px;
    height: 20px;
}

/* Join actions */
.join-actions[b-bppzk1equj] {
    width: 100%;
    text-align: center;
}

.join-text[b-bppzk1equj] {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

/* Auth actions */
.auth-actions[b-bppzk1equj] {
    width: 100%;
    text-align: center;
}

.auth-text[b-bppzk1equj] {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.auth-buttons[b-bppzk1equj] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

/* Buttons */
.btn-login[b-bppzk1equj] {
    background-color: #0aaf25;
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.2s;
    max-width: 300px;
    margin: 0 auto;
}

    .btn-login:hover:not(:disabled)[b-bppzk1equj] {
        background-color: #23b73b;
    }

    .btn-login:active:not(:disabled)[b-bppzk1equj] {
        transform: translateY(1px);
    }

    .btn-login:disabled[b-bppzk1equj] {
        opacity: 0.6;
        cursor: not-allowed;
    }

.btn-secondary[b-bppzk1equj] {
    background-color: #0aaf25;
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.2s;
    max-width: 300px;
    margin: 0 auto;
}

    .btn-secondary:hover[b-bppzk1equj] {
        background-color: #3a9ba8;
    }

    .btn-secondary:active[b-bppzk1equj] {
        transform: translateY(1px);
    }

/* Responsive adjustments */
@media (max-width: 480px) {
    .login-card[b-bppzk1equj] {
        min-height: 35.5rem;
        max-height: 35.5rem;
        padding: 1.5rem;
        max-width: 320px;
        margin-top: -1rem;
    }

    .login-title[b-bppzk1equj] {
        font-size: 1.3rem;
        padding: 0;
        margin-bottom: -0.5rem;
    }

    header[b-bppzk1equj] {
        padding: 1rem;
    }

    .cdu-logo[b-bppzk1equj] {
        height: 30px;
    }

    .campaign-icon[b-bppzk1equj] {
        width: 60px;
        height: 60px;
    }

    .campaign-name[b-bppzk1equj] {
        font-size: 1.2rem;
    }

    .share-id[b-bppzk1equj] {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .auth-buttons[b-bppzk1equj] {
        gap: 0.75rem;
    }
}

/* Make sure we account for safe areas on modern devices */
@supports (padding: max(0px)) {
    .login-page[b-bppzk1equj] {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
        padding-bottom: max(0px, env(safe-area-inset-bottom));
    }
}
/* _content/SimpliMed.PWA.TippMeister/Components/Pages/LandingPage.razor.rz.scp.css */
/* Responsive design */
@media (max-width: 992px) {
    .main-content[b-8qiell4ccl] {
        flex-direction: column;
    }

    .form-section[b-8qiell4ccl] {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-section[b-8qiell4ccl] {
        text-align: center;
        padding-top: 1rem;
    }

    .hero-content[b-8qiell4ccl] {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .betting-section[b-8qiell4ccl] {
        flex-direction: column;
        gap: 2rem;
    }

    .form-container[b-8qiell4ccl] {
        max-width: 100%;
    }

    .betting-row[b-8qiell4ccl] {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: center;
    }

    .footer-content[b-8qiell4ccl] {
        flex-direction: column;
        text-align: center;
    }

    .footer-right[b-8qiell4ccl] {
        text-align: center;
    }

    .footer-bottom[b-8qiell4ccl] {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .partner-logos[b-8qiell4ccl] {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    header[b-8qiell4ccl] {
        padding: 1rem;
    }

    .logo[b-8qiell4ccl] {
        height: 30px;
    }

    .form-section[b-8qiell4ccl] {
        padding: 1rem;
    }

    .form-container[b-8qiell4ccl] {
        padding: 1.5rem;
    }

    .hero-section[b-8qiell4ccl] {
        padding: 2rem 1rem;
    }

    .hero-title[b-8qiell4ccl] {
        font-size: 2rem;
    }

    .section-title[b-8qiell4ccl] {
        font-size: 2rem;
    }

    .platform-title[b-8qiell4ccl] {
        font-size: 1.8rem;
    }

    .footer-links[b-8qiell4ccl] {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-right[b-8qiell4ccl] {
        max-width:100% !important;
        text-align:center !important;
    }

    .footer-left[b-8qiell4ccl] {
        max-width: 100% !important;
    }
}

/* Safe area support for modern devices */
@supports (padding: max(0px)) {
    .landing-page[b-8qiell4ccl] {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }

    .footer[b-8qiell4ccl] {
        padding-bottom: max(1rem, env(safe-area-inset-bottom));
    }
}
/* Footer */
.footer[b-8qiell4ccl] {
    background-color: #000;
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content[b-8qiell4ccl] {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
}

.footer-left[b-8qiell4ccl] {
    flex: 1;
}

.footer-logo[b-8qiell4ccl] {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-left p[b-8qiell4ccl] {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.8;
}

.footer-right[b-8qiell4ccl] {
    flex: 1;
    text-align: right;
}

    .footer-right h3[b-8qiell4ccl] {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .footer-right p[b-8qiell4ccl] {
        font-size: 0.9rem;
        line-height: 1.5;
        opacity: 0.8;
        margin-bottom: 1rem;
    }

.footer-button[b-8qiell4ccl] {
    background-color: #0aaf25;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .footer-button:hover[b-8qiell4ccl] {
        background-color: #4a9ca8;
    }

.footer-bottom[b-8qiell4ccl] {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links[b-8qiell4ccl] {
    display: flex;
    gap: 2rem;
}

.footer-link[b-8qiell4ccl] {
    color: white;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}

    .footer-link:hover[b-8qiell4ccl] {
        opacity: 1;
        text-decoration: underline;
    }

.copyright[b-8qiell4ccl] {
    font-size: 0.8rem;
    opacity: 0.6;
}
/* Platform section */
.platform-section[b-8qiell4ccl] {
    background-color: #0aaf25;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.platform-content[b-8qiell4ccl] {
    max-width: 800px;
    margin: 0 auto;
}

.platform-title[b-8qiell4ccl] {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.platform-description[b-8qiell4ccl] {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.platform-buttons[b-8qiell4ccl] {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.platform-button[b-8qiell4ccl] {
    background-color: #0aaf25;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .platform-button:hover[b-8qiell4ccl] {
        background-color: #23b73b;
    }

/* Partners section */
.partners-section[b-8qiell4ccl] {
    padding: 4rem 2rem;
    background-color: #f8f8f8;
    text-align: center;
}

.partner-logos[b-8qiell4ccl] {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.partner-logo[b-8qiell4ccl] {
    height: 60px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s;
}

    .partner-logo:hover[b-8qiell4ccl] {
        opacity: 1;
    }
/* LandingPage.razor.css */

.landing-page[b-8qiell4ccl] {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    font-family: 'Roboto Condensed', Arial, sans-serif;
}

/* Header styles */
header[b-8qiell4ccl] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-container[b-8qiell4ccl] {
    display: flex;
    align-items: center;
}

.logo[b-8qiell4ccl] {
    height: 40px;
    width: auto;
}

.app-title[b-8qiell4ccl] {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Main content area */
.main-content[b-8qiell4ccl] {
    display: flex;
    background-image: url('/background.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 500px;
    flex-direction: row;
}

    .main-content[b-8qiell4ccl]::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(82, 183, 193, 0.8);
    }

/* Hero section */
.hero-section[b-8qiell4ccl] {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
}

.hero-content[b-8qiell4ccl] {
    max-width: 600px;
    color: white;
}

.hero-title[b-8qiell4ccl] {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-line[b-8qiell4ccl] {
    display: block;
}

.hero-subtitle[b-8qiell4ccl] {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.95;
}

/* Form section */
.form-section[b-8qiell4ccl] {
    width: 400px;
    display: flex;
    align-items: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.form-container[b-8qiell4ccl] {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.form-title[b-8qiell4ccl] {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-group[b-8qiell4ccl] {
    margin-bottom: 1.25rem;
}

    .form-group label[b-8qiell4ccl] {
        font-size: 0.9rem;
        font-weight: 500;
        color: #555;
        display: block;
        margin-bottom: 0.5rem;
    }

.required-mark[b-8qiell4ccl] {
    color: #ff453a;
    margin-left: 0.25rem;
}

.form-input[b-8qiell4ccl] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

    .form-input:focus[b-8qiell4ccl] {
        outline: none;
        border-color: #0aaf25;
        box-shadow: 0 0 0 2px rgba(82, 183, 193, 0.2);
    }

    .form-input.input-error[b-8qiell4ccl] {
        border-color: #ff453a;
    }

.password-container[b-8qiell4ccl] {
    position: relative;
}

.password-toggle[b-8qiell4ccl] {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
}

.checkbox-group[b-8qiell4ccl] {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.checkbox-container[b-8qiell4ccl] {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label[b-8qiell4ccl] {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
}

.submit-button[b-8qiell4ccl] {
    width: 100%;
    background-color: #0aaf25;
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .submit-button:hover[b-8qiell4ccl] {
        background-color: #23b73b;
    }

    .submit-button:disabled[b-8qiell4ccl] {
        opacity: 0.6;
        cursor: not-allowed;
    }

.form-links[b-8qiell4ccl] {
    margin-top: 1rem;
}

.register-link[b-8qiell4ccl] {
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #555;
}

.link[b-8qiell4ccl], .link-button[b-8qiell4ccl] {
    color: #0aaf25;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: inherit;
}

    .link:hover[b-8qiell4ccl], .link-button:hover[b-8qiell4ccl] {
        text-decoration: underline;
    }

.validation-error[b-8qiell4ccl] {
    color: #ff453a;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.success-message[b-8qiell4ccl] {
    color: #28a745;
    font-size: 0.9rem;
    background-color: rgba(40, 167, 69, 0.1);
    padding: 0.5rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    text-align: center;
}

/* Scrollable content */
.scrollable-content[b-8qiell4ccl] {
    width: 100%;
    overflow-y: auto;
    background-color: #fff;
}

/* Betting section */
.betting-section[b-8qiell4ccl] {
    display: flex;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
    align-items: center;
}

.betting-content[b-8qiell4ccl] {
    flex: 1;
}

.section-title[b-8qiell4ccl] {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.section-description[b-8qiell4ccl] {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

.cta-button[b-8qiell4ccl] {
    background-color: #0aaf25;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .cta-button:hover[b-8qiell4ccl] {
        background-color: #4a9ca8;
    }

.betting-interface[b-8qiell4ccl] {
    flex: 1;
    max-width: 500px;
}

.betting-table[b-8qiell4ccl] {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.betting-row[b-8qiell4ccl] {
    display: grid;
    grid-template-columns: auto auto 1fr auto 1fr auto auto;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    gap: 1rem;
    font-size: 0.9rem;
}

    .betting-row:last-child[b-8qiell4ccl] {
        border-bottom: none;
    }

.date[b-8qiell4ccl], .time[b-8qiell4ccl] {
    font-weight: 500;
    color: #666;
}

.team[b-8qiell4ccl] {
    font-weight: 500;
    color: #333;
}

.vs[b-8qiell4ccl] {
    color: #999;
    font-weight: normal;
}

.score-inputs[b-8qiell4ccl] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .score-inputs input[b-8qiell4ccl] {
        width: 40px;
        padding: 0.5rem;
        border: 1px solid #ddd;
        border-radius: 4px;
        text-align: center;
        font-size: 1rem;
    }

.points[b-8qiell4ccl] {
    background-color: #0aaf25;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-weight: 500;
    min-width: 30px;
    text-align: center;
}
/* _content/SimpliMed.PWA.TippMeister/Components/Pages/Login.razor.rz.scp.css */
/* Styles for the Login page */

/* Page-specific body styles */
[b-fwwlp8b6om] body {
    height: auto;
    overflow: auto;
    position: static;
    width: 100%;
    overscroll-behavior: auto;
}

/* Header styles */
header[b-fwwlp8b6om] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    background-color: var(--primary-color);
    color: white;
    padding: 0 16px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-left[b-fwwlp8b6om], .header-right[b-fwwlp8b6om] {
    display: flex;
    align-items: center;
    min-width: max-content;
}

.header-left[b-fwwlp8b6om] {
    width: 12rem;
}

.header-right[b-fwwlp8b6om] {
    width: 180px;
    justify-content: flex-end;
}

.header-center[b-fwwlp8b6om] {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    width: 0;
}

/* App name in header */
#lbl_appname[b-fwwlp8b6om] {
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
}

/* Language selector in header */
.auth-language-selector[b-fwwlp8b6om] {
    position: relative;
}

    .auth-language-selector select[b-fwwlp8b6om] {
        appearance: none;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: white;
        padding: 0.3rem 1.5rem 0.3rem 0.5rem;
        border-radius: 4px;
        font-size: 0.85rem;
        cursor: pointer;
    }

    .auth-language-selector[b-fwwlp8b6om]::after {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        right: 0.5rem;
        top: 50%;
        transform: translateY(-50%);
        color: white;
        font-size: 0.7rem;
        pointer-events: none;
    }

/* Authentication container */
.auth-container[b-fwwlp8b6om] {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: calc(100vh - var(--header-height));
    padding: 2rem 1rem;
    margin-top: var(--header-height);
    background-color: var(--background-color);
    overflow-y: visible;
}

/* Authentication card */
.auth-card[b-fwwlp8b6om] {
    width: 100%;
    max-width: 420px;
    background-color: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

/* Tabs for switching between login and register */
.auth-tabs[b-fwwlp8b6om] {
    display: flex;
    width: 100%;
    background-color: var(--surface-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.auth-tab[b-fwwlp8b6om] {
    flex: 1;
    background: none;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

    .auth-tab.active[b-fwwlp8b6om] {
        color: var(--primary-color);
    }

        .auth-tab.active[b-fwwlp8b6om]::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--primary-color);
            border-radius: 3px 3px 0 0;
        }

/* Form styling */
.auth-form[b-fwwlp8b6om] {
    padding: 2rem;
}

    /* No need for display: none since we control it with inline style */
    .auth-form.active[b-fwwlp8b6om] {
        /*animation: fadeIn 0.3s ease;*/
    }

@keyframes fadeIn-b-fwwlp8b6om {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-icon[b-fwwlp8b6om] {
    width: 64px;
    height: 64px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

    .auth-icon i[b-fwwlp8b6om] {
        font-size: 1.75rem;
    }

.auth-form h2[b-fwwlp8b6om] {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.auth-subtitle[b-fwwlp8b6om] {
    text-align: center;
    color: var(--text-secondary-color);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.form-group[b-fwwlp8b6om] {
    margin-bottom: 1.25rem;
}

    .form-group label[b-fwwlp8b6om] {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 500;
        color: var(--text-color);
    }

.input-icon-wrapper[b-fwwlp8b6om] {
    position: relative;
    display: flex;
    align-items: center;
}

    .input-icon-wrapper i[b-fwwlp8b6om] {
        position: absolute;
        left: 1rem;
        color: var(--text-secondary-color);
        z-index: 1;
    }

    .input-icon-wrapper[b-fwwlp8b6om]  input {
        width: 100%;
        padding: 0.85rem 1rem 0.85rem 2.5rem;
        border: 1px solid rgba(0, 0, 0, 0.1);
        border-radius: 6px;
        background-color: var(--surface-color);
        color: var(--text-color);
        font-size: 1rem;
        transition: all 0.3s ease;
    }

        .input-icon-wrapper[b-fwwlp8b6om]  input:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(28, 169, 201, 0.2);
            outline: none;
        }

.password-toggle[b-fwwlp8b6om] {
    position: absolute;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-secondary-color);
    cursor: pointer;
    padding: 0.25rem;
    font-size: 0.9rem;
    z-index: 1;
}

.form-options[b-fwwlp8b6om] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.checkbox-wrapper[b-fwwlp8b6om] {
    display: flex;
    align-items: center;
}

    .checkbox-wrapper[b-fwwlp8b6om]  input[type="checkbox"] {
        margin-right: 0.5rem;
        accent-color: var(--primary-color);
    }

    .checkbox-wrapper label[b-fwwlp8b6om], .forgot-password[b-fwwlp8b6om] {
        font-size: 0.9rem;
        color: var(--text-secondary-color);
    }

    .checkbox-wrapper a[b-fwwlp8b6om], .forgot-password[b-fwwlp8b6om] {
        color: var(--primary-color);
        text-decoration: none;
        transition: color 0.2s;
    }

        .checkbox-wrapper a:hover[b-fwwlp8b6om], .forgot-password:hover[b-fwwlp8b6om] {
            color: var(--primary-dark-color);
            text-decoration: underline;
        }

.auth-button[b-fwwlp8b6om] {
    width: 100%;
    padding: 0.9rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .auth-button:hover[b-fwwlp8b6om] {
        background-color: var(--primary-dark-color);
    }

/* Social login section */
.social-login[b-fwwlp8b6om] {
    margin-top: 1.5rem;
    text-align: center;
}

    .social-login p[b-fwwlp8b6om] {
        color: var(--text-secondary-color);
        margin-bottom: 1rem;
        font-size: 0.9rem;
        position: relative;
    }

        .social-login p[b-fwwlp8b6om]::before,
        .social-login p[b-fwwlp8b6om]::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 25%;
            height: 1px;
            background-color: rgba(0, 0, 0, 0.1);
        }

        .social-login p[b-fwwlp8b6om]::before {
            left: 0;
        }

        .social-login p[b-fwwlp8b6om]::after {
            right: 0;
        }

.social-buttons[b-fwwlp8b6om] {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-button[b-fwwlp8b6om] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: var(--surface-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

    .social-button:hover[b-fwwlp8b6om] {
        transform: translateY(-2px);
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    }

    .social-button.google i[b-fwwlp8b6om] {
        color: #DB4437;
    }

    .social-button.facebook i[b-fwwlp8b6om] {
        color: #4267B2;
    }

    .social-button.apple i[b-fwwlp8b6om] {
        color: #000000;
    }

/* Theme toggle at the bottom */
.theme-toggle-wrapper[b-fwwlp8b6om] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.5rem;
    gap: 0.75rem;
}

    .theme-toggle-wrapper label[b-fwwlp8b6om] {
        color: var(--text-secondary-color);
        font-size: 0.9rem;
    }

/* Theme toggle switch */
.theme-toggle[b-fwwlp8b6om] {
    position: relative;
    width: 3.5rem;
    height: 1.75rem;
    border-radius: 1.75rem;
    background-color: #ccc;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .theme-toggle.dark[b-fwwlp8b6om] {
        background-color: var(--primary-color);
    }

.theme-toggle-slider[b-fwwlp8b6om] {
    position: absolute;
    top: 0.25rem;
    left: 0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background-color: white;
    transition: transform 0.3s;
}

.theme-toggle.dark .theme-toggle-slider[b-fwwlp8b6om] {
    transform: translateX(1.75rem);
}

/* Success message styling */
.form-success[b-fwwlp8b6om] {
    color: var(--success-color);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: var(--border-radius);
    text-align: center;
}

/* Loading state for button */
.auth-button.loading[b-fwwlp8b6om] {
    background-color: var(--primary-dark-color);
    pointer-events: none;
    position: relative;
}

    .auth-button.loading[b-fwwlp8b6om]::after {
        content: '';
        width: 1rem;
        height: 1rem;
        border: 2px solid transparent;
        border-top-color: white;
        border-radius: 50%;
        margin-left: 0.5rem;
        animation: buttonSpin-b-fwwlp8b6om 0.8s linear infinite;
        position: absolute;
        right: 1rem;
    }

@keyframes buttonSpin-b-fwwlp8b6om {
    to {
        transform: rotate(360deg);
    }
}

/* Password strength indicator */
.password-strength[b-fwwlp8b6om] {
    display: flex;
    margin-top: 0.5rem;
}

.strength-segment[b-fwwlp8b6om] {
    height: 4px;
    flex: 1;
    margin-right: 3px;
    background-color: #e0e0e0;
    border-radius: 2px;
}

    .strength-segment:last-child[b-fwwlp8b6om] {
        margin-right: 0;
    }

.password-strength.weak .strength-segment:nth-child(1)[b-fwwlp8b6om] {
    background-color: var(--error-color);
}

.password-strength.medium .strength-segment:nth-child(1)[b-fwwlp8b6om],
.password-strength.medium .strength-segment:nth-child(2)[b-fwwlp8b6om] {
    background-color: #FFA000; /* Amber */
}

.password-strength.strong .strength-segment:nth-child(1)[b-fwwlp8b6om],
.password-strength.strong .strength-segment:nth-child(2)[b-fwwlp8b6om],
.password-strength.strong .strength-segment:nth-child(3)[b-fwwlp8b6om] {
    background-color: var(--success-color);
}

.password-strength.very-strong .strength-segment[b-fwwlp8b6om] {
    background-color: var(--success-color);
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .auth-card[b-fwwlp8b6om] {
        border-radius: 8px;
        margin-top: 1rem;
    }

    .auth-form[b-fwwlp8b6om] {
        padding: 1.5rem;
    }

    .form-options[b-fwwlp8b6om] {
        flex-direction: column;
        align-items: flex-start;
    }

    .forgot-password[b-fwwlp8b6om] {
        align-self: flex-end;
        margin-top: 0.5rem;
    }
}

/* Safe area insets for modern devices */
@supports (padding: max(0px)) {
    .auth-container[b-fwwlp8b6om] {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
        padding-bottom: max(1rem, env(safe-area-inset-bottom));
    }
}
/* _content/SimpliMed.PWA.TippMeister/Components/Pages/LoginAlt.razor.rz.scp.css */

/* Login page specific styles */
.login-page[b-3wvf8ya6t4] {
    min-height: 100vh;
    width: 100%;
    background-color: rgb(236,236,236);
    /*background-image: url("/background.jpg");*/
    background-size: cover;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* sHeader styles */
header[b-3wvf8ya6t4] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    width: 100%;
}

.logo-container[b-3wvf8ya6t4] {
    display: flex;
    align-items: center;
}

.cdu-logo[b-3wvf8ya6t4] {
    height: 40px;
    width: auto;
}

.app-title[b-3wvf8ya6t4] {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Login container */
.login-container[b-3wvf8ya6t4] {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 1rem;
}

.login-card[b-3wvf8ya6t4] {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    display: flex;
    min-height: 35.5rem;
    max-height: 35.5rem;
    flex-direction: column;
    gap: 1.5rem;
}

.login-title[b-3wvf8ya6t4] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Form styles */
.form-group[b-3wvf8ya6t4] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

    .form-group label[b-3wvf8ya6t4] {
        font-size: 0.9rem;
        font-weight: 500;
        color: #555;
    }

.required-mark[b-3wvf8ya6t4] {
    color: #ff453a;
    margin-left: 0.25rem;
}

[b-3wvf8ya6t4] input {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    width: 100%;
    transition: border-color 0.2s;
}

    [b-3wvf8ya6t4] input:focus {
        outline: none;
        border-color: #0aaf25;
        box-shadow: 0 0 0 2px rgba(28, 169, 201, 0.2);
    }

    [b-3wvf8ya6t4] input.input-error {
        border-color: #ff453a;
    }

.validation-error[b-3wvf8ya6t4] {
    color: #ff453a;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.error-message[b-3wvf8ya6t4] {
    color: #ff453a;
    font-size: 0.9rem;
    background-color: rgba(255, 69, 58, 0.1);
    padding: 0.75rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    text-align: center;
}

/* Checkbox styles */
.checkbox-group[b-3wvf8ya6t4] {
    margin-bottom: 1.5rem;
}

.checkbox-container[b-3wvf8ya6t4] {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
}

[b-3wvf8ya6t4] input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    cursor: pointer;
}

.checkbox-label[b-3wvf8ya6t4] {
    font-size: 0.9rem;
    color: #555;
}

/* Login button */
.btn-login[b-3wvf8ya6t4] {
    background-color: #0aaf25;
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .btn-login:hover[b-3wvf8ya6t4] {
        background-color: #23b73b;
    }

    .btn-login:active[b-3wvf8ya6t4] {
        transform: translateY(1px);
    }

/* Register link */
.register-link[b-3wvf8ya6t4] {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #555;
}

    .register-link a[b-3wvf8ya6t4] {
        color: #0aaf25;
        text-decoration: none;
        font-weight: 500;
    }

        .register-link a:hover[b-3wvf8ya6t4] {
            text-decoration: underline;
        }

@media (min-width: 480px) {
    #chebo[b-3wvf8ya6t4] {
        margin-top: 6.85rem !important;
    }

    #pawo[b-3wvf8ya6t4] {
        margin-top:-0.1rem !important;
    }
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .login-card[b-3wvf8ya6t4] {
        min-height: 31rem;
        max-height: 31rem;
        padding: 1rem;
        max-width: 290px;
        margin-top: -1rem;
    }

    .login-card-reduced[b-3wvf8ya6t4] {
        max-height:496px !important;
        min-height:496px !important;
        margin:0 !important;
    }

    #noka[b-3wvf8ya6t4] {
        margin-top: -0.9rem !important;
    }

    #chebo[b-3wvf8ya6t4] {
        margin-top: 5.85rem !important;
        margin-bottom: 1.5rem !important;
        /*margin-top: 6.2rem !important;*/
    }

    #pawo[b-3wvf8ya6t4] {
        /*margin-top:0rem !important;*/
        bottom: 0rem !important;
    }

    #remember-me[b-3wvf8ya6t4] {
        margin-top: 1px !important;
    }

    .login-title[b-3wvf8ya6t4] {
        padding: 0;
        margin-bottom: -1.5rem;
    }

    header[b-3wvf8ya6t4] {
        padding: 1rem;
    }

    .cdu-logo[b-3wvf8ya6t4] {
        height: 30px;
    }
}

/* Make sure we account for safe areas on modern devices */
@supports (padding: max(0px)) {
    .login-page[b-3wvf8ya6t4] {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
        padding-bottom: max(0px, env(safe-area-inset-bottom));
    }
}
/* _content/SimpliMed.PWA.TippMeister/Components/Pages/Onboarding.razor.rz.scp.css */
/* Comprehensive Onboarding Styles */
.onboarding-container[b-05tc32inv6] {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: var(--background-color);
    padding: 2rem;
    box-sizing: border-box;
}

.onboarding-card[b-05tc32inv6] {
    width: 100%;
    max-width: 600px;
    background-color: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    animation: fadeIn-b-05tc32inv6 0.5s ease;
    position: relative;
}

@keyframes fadeIn-b-05tc32inv6 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.onboarding-header[b-05tc32inv6] {
    text-align: center;
    margin-bottom: 2rem;
}

    .onboarding-header h2[b-05tc32inv6] {
        color: var(--primary-color);
        margin-bottom: 0.5rem;
        font-size: 1.8rem;
        font-weight: 600;
    }

    .onboarding-header p[b-05tc32inv6] {
        color: var(--text-secondary-color);
        font-size: 1rem;
    }

.onboarding-progress[b-05tc32inv6] {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}

.progress-step[b-05tc32inv6] {
    flex-grow: 1;
    height: 4px;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 0 0.5rem;
    border-radius: 2px;
    transition: background-color 0.3s;
    position: relative;
}

    .progress-step[b-05tc32inv6]::before {
        content: '';
        position: absolute;
        top: -6px;
        left: 50%;
        transform: translateX(-50%);
        width: 12px;
        height: 12px;
        background-color: rgba(0, 0, 0, 0.1);
        border-radius: 50%;
        transition: background-color 0.3s;
    }

    .progress-step.active[b-05tc32inv6] {
        background-color: var(--primary-color);
    }

        .progress-step.active[b-05tc32inv6]::before {
            background-color: var(--primary-color);
        }

    .progress-step.completed[b-05tc32inv6] {
        background-color: var(--success-color);
    }

        .progress-step.completed[b-05tc32inv6]::before {
            background-color: var(--success-color);
        }

.onboarding-step[b-05tc32inv6] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .onboarding-step h3[b-05tc32inv6] {
        color: var(--primary-dark-color);
        margin-bottom: 1rem;
        text-align: center;
        font-size: 1.4rem;
        font-weight: 500;
    }

.form-group[b-05tc32inv6] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

    .form-group label[b-05tc32inv6] {
        font-weight: 500;
        color: var(--text-color);
        font-size: 0.9rem;
    }

.form-control[b-05tc32inv6] {
    padding: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    background-color: var(--surface-color);
    color: var(--text-color);
    transition: all 0.3s ease;
    font-size: 1rem;
}

    .form-control:focus[b-05tc32inv6] {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(28, 169, 201, 0.2);
    }

    .form-control.invalid[b-05tc32inv6] {
        border-color: var(--error-color);
    }

.validation-message[b-05tc32inv6] {
    color: var(--error-color);
    font-size: 0.8rem;
    margin-top: 0.25rem;
    animation: fadeIn-b-05tc32inv6 0.3s ease;
}

.onboarding-actions[b-05tc32inv6] {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1rem;
}

.btn[b-05tc32inv6] {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-secondary[b-05tc32inv6] {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--text-color);
}

.btn-primary[b-05tc32inv6] {
    background-color: var(--primary-color);
    color: white;
}

.btn-finish[b-05tc32inv6] {
    background-color: var(--success-color);
    color: white;
}

.btn:hover[b-05tc32inv6] {
    transform: translateY(-2px);
    opacity: 0.9;
}

.btn:active[b-05tc32inv6] {
    transform: translateY(0);
}

.profile-photo-upload[b-05tc32inv6] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.photo-preview[b-05tc32inv6] {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    position: relative;
    transition: all 0.3s ease;
}

    .photo-preview:hover[b-05tc32inv6] {
        transform: scale(1.05);
    }

    .photo-preview img[b-05tc32inv6] {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .photo-preview i[b-05tc32inv6] {
        font-size: 6rem;
        color: var(--text-secondary-color);
    }

.file-input[b-05tc32inv6] {
    display: none;
}

.upload-button[b-05tc32inv6] {
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .upload-button:hover[b-05tc32inv6] {
        background-color: var(--primary-dark-color);
        transform: translateY(-2px);
    }

/* Dark Mode Styles */
[data-theme="dark"] .onboarding-card[b-05tc32inv6] {
    background-color: var(--surface-color);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .form-control[b-05tc32inv6] {
    background-color: #2C2C2E;
    border-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.87);
}

    [data-theme="dark"] .form-control:focus[b-05tc32inv6] {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.2);
    }

[data-theme="dark"] .photo-preview[b-05tc32inv6] {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
}

    [data-theme="dark"] .photo-preview i[b-05tc32inv6] {
        color: rgba(255, 255, 255, 0.6);
    }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .onboarding-card[b-05tc32inv6] {
        max-width: 100%;
        margin: 0;
        padding: 1rem;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .onboarding-header[b-05tc32inv6] {
        margin-bottom: 1rem;
    }

        .onboarding-header h2[b-05tc32inv6] {
            font-size: 1.5rem;
        }

    .onboarding-progress[b-05tc32inv6] {
        margin-bottom: 1rem;
    }

    .photo-preview[b-05tc32inv6] {
        width: 150px;
        height: 150px;
    }

    .upload-button[b-05tc32inv6] {
        width: 100%;
    }

    .onboarding-actions[b-05tc32inv6] {
        flex-direction: column;
    }

    .btn[b-05tc32inv6] {
        width: 100%;
    }
}

/* Accessibility and Animation Enhancements */
.form-control:focus-visible[b-05tc32inv6] {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.onboarding-step[b-05tc32inv6] {
    animation: stepFadeIn-b-05tc32inv6 0.3s ease;
}

@keyframes stepFadeIn-b-05tc32inv6 {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Additional Micro-interactions */
.input-icon[b-05tc32inv6] {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary-color);
}

.input-group[b-05tc32inv6] {
    position: relative;
}

/* Password Strength Indicator */
.password-strength[b-05tc32inv6] {
    display: flex;
    height: 4px;
    margin-top: 0.25rem;
}

.strength-segment[b-05tc32inv6] {
    flex: 1;
    margin-right: 3px;
    background-color: #e0e0e0;
    border-radius: 2px;
    transition: background-color 0.3s;
}

.password-strength.weak .strength-segment:nth-child(1)[b-05tc32inv6] {
    background-color: var(--error-color);
}

.password-strength.medium .strength-segment:nth-child(1)[b-05tc32inv6],
.password-strength.medium .strength-segment:nth-child(2)[b-05tc32inv6] {
    background-color: #FFA000;
}

.password-strength.strong .strength-segment:nth-child(1)[b-05tc32inv6],
.password-strength.strong .strength-segment:nth-child(2)[b-05tc32inv6],
.password-strength.strong .strength-segment:nth-child(3)[b-05tc32inv6] {
    background-color: var(--success-color);
}

.password-strength.very-strong .strength-segment[b-05tc32inv6] {
    background-color: var(--success-color);
}
/* _content/SimpliMed.PWA.TippMeister/Components/Pages/PasswordReset.razor.rz.scp.css */
/* Password reset page specific styles - based on LoginAlt.razor.css */
.login-page[b-gb8suvqd2h] {
    min-height: 100vh;
    width: 100%;
    background-color: rgb(236,236,236);
    /*background-image: url("/background.jpg");*/
    background-size: cover;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Header styles */
header[b-gb8suvqd2h] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    width: 100%;
}

.logo-container[b-gb8suvqd2h] {
    display: flex;
    align-items: center;
}

.cdu-logo[b-gb8suvqd2h] {
    height: 40px;
    width: auto;
}

.app-title[b-gb8suvqd2h] {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Login container */
.login-container[b-gb8suvqd2h] {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 1rem;
}

.login-card[b-gb8suvqd2h] {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    display: flex;
    min-height: 35.5rem;
    max-height: 35.5rem;
    flex-direction: column;
    gap: 1.5rem;
}

.login-title[b-gb8suvqd2h] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Form styles */
.form-group[b-gb8suvqd2h] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

    .form-group label[b-gb8suvqd2h] {
        font-size: 0.9rem;
        font-weight: 500;
        color: #555;
    }

.required-mark[b-gb8suvqd2h] {
    color: #ff453a;
    margin-left: 0.25rem;
}

[b-gb8suvqd2h] input {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    width: 100%;
    transition: border-color 0.2s;
}

    [b-gb8suvqd2h] input:focus {
        outline: none;
        border-color: #0aaf25;
        box-shadow: 0 0 0 2px rgba(28, 169, 201, 0.2);
    }

    [b-gb8suvqd2h] input.input-error {
        border-color: #ff453a;
    }

.validation-error[b-gb8suvqd2h] {
    color: #ff453a;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.error-message[b-gb8suvqd2h] {
    color: #ff453a;
    font-size: 0.9rem;
    background-color: rgba(255, 69, 58, 0.1);
    padding: 0.75rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    text-align: center;
}

.success-message[b-gb8suvqd2h] {
    color: #4CAF50;
    font-size: 0.9rem;
    background-color: rgba(76, 175, 80, 0.1);
    padding: 0.75rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    text-align: center;
}

/* Checkbox styles */
.checkbox-group[b-gb8suvqd2h] {
    margin-bottom: 1rem;
}

.checkbox-container[b-gb8suvqd2h] {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
}

[b-gb8suvqd2h] input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    cursor: pointer;
}

.checkbox-label[b-gb8suvqd2h] {
    font-size: 0.9rem;
    color: #555;
}

/* Login button */
.btn-login[b-gb8suvqd2h] {
    background-color: #0aaf25;
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .btn-login:hover[b-gb8suvqd2h] {
        background-color: #23b73b;
    }

    .btn-login:active[b-gb8suvqd2h] {
        transform: translateY(1px);
    }

/* Register link */
.register-link[b-gb8suvqd2h] {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #555;
}

    .register-link a[b-gb8suvqd2h] {
        color: #0aaf25;
        text-decoration: none;
        font-weight: 500;
    }

        .register-link a:hover[b-gb8suvqd2h] {
            text-decoration: underline;
        }

/* Footer links */
.login-footer-links[b-gb8suvqd2h] {
    padding: 0.75rem;
    text-align: center;
    font-size: 0.85rem;
    color: white;
}

    .login-footer-links a[b-gb8suvqd2h] {
        color: white;
        text-decoration: none;
        margin: 0 0.5rem;
    }

        .login-footer-links a:hover[b-gb8suvqd2h] {
            text-decoration: underline;
        }

/* Responsive adjustments */
@media (max-width: 480px) {
    .login-card[b-gb8suvqd2h] {
        min-height: 31rem;
        max-height: 31rem;
        padding: 1rem;
        max-width:290px;
        min-height: 31rem;
    }

    .login-title[b-gb8suvqd2h] {
        padding: 0;
        margin-bottom: -1.5rem;
    }

    #logi[b-gb8suvqd2h] {
        margin-top:2.2rem !important;
    }

    header[b-gb8suvqd2h] {
        padding: 1rem;
    }

    .cdu-logo[b-gb8suvqd2h] {
        height: 30px;
    }
}

/* Make sure we account for safe areas on modern devices */
@supports (padding: max(0px)) {
    .login-page[b-gb8suvqd2h] {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
        padding-bottom: max(0px, env(safe-area-inset-bottom));
    }
}
/* _content/SimpliMed.PWA.TippMeister/Components/Pages/RegisterAlt.razor.rz.scp.css */
/* Register page specific styles */
.login-page[b-d4nuyo0jwq] {
    min-height: 100vh;
    width: 100%;
    /*background-color: #0aaf25;*/
    background-color: rgb(236,236,236);
    /*background-image: url("/background.jpg");*/
    background-size: cover;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Header styles */
header[b-d4nuyo0jwq] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    width: 100%;
}

.logo-container[b-d4nuyo0jwq] {
    display: flex;
    align-items: center;
}

.cdu-logo[b-d4nuyo0jwq] {
    height: 40px;
    width: auto;
}

.app-title[b-d4nuyo0jwq] {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
}

/* Login container */
.login-container[b-d4nuyo0jwq] {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 1rem;
}


/* Checkbox styles */
.checkbox-group[b-d4nuyo0jwq] {
    margin-bottom: 1rem !important;
}

.checkbox-container[b-d4nuyo0jwq] {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
}

[b-d4nuyo0jwq] input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
    cursor: pointer;
}

.checkbox-label[b-d4nuyo0jwq] {
    font-size: 0.9rem;
    color: #555;
}


.login-card[b-d4nuyo0jwq] {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 100%;
    min-height:35.5rem;
    max-height:35.5rem;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.login-title[b-d4nuyo0jwq] {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    padding:0;
    margin: 0;
}

/* Form styles */
.form-group[b-d4nuyo0jwq] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

    .form-group label[b-d4nuyo0jwq] {
        font-size: 0.9rem;
        font-weight: 500;
        color: #555;
    }

.required-mark[b-d4nuyo0jwq] {
    color: #ff453a;
    margin-left: 0.25rem;
}

[b-d4nuyo0jwq] input {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    width: 100%;
    transition: border-color 0.2s;
}

    [b-d4nuyo0jwq] input:focus {
        outline: none;
        border-color: #0aaf25;
        box-shadow: 0 0 0 2px rgba(28, 169, 201, 0.2);
    }

    [b-d4nuyo0jwq] input.input-error {
        border-color: #ff453a;
    }

.validation-error[b-d4nuyo0jwq] {
    color: #ff453a;
    font-size: 0.8rem;
    margin-top: 0.25rem;
}

.error-message[b-d4nuyo0jwq] {
    color: #ff453a;
    font-size: 0.9rem;
    background-color: rgba(255, 69, 58, 0.1);
    padding: 0.75rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    text-align: center;
}

/* Login button */
.btn-login[b-d4nuyo0jwq] {
    background-color: #0aaf25;
    color: white;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .btn-login:hover[b-d4nuyo0jwq] {
        background-color: #23b73b;
    }

    .btn-login:active[b-d4nuyo0jwq] {
        transform: translateY(1px);
    }

/* Register link */
.register-link[b-d4nuyo0jwq] {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #555;
}

    .register-link a[b-d4nuyo0jwq] {
        color: #0aaf25;
        text-decoration: none;
        font-weight: 500;
    }

        .register-link a:hover[b-d4nuyo0jwq] {
            text-decoration: underline;
        }

/* Responsive adjustments */
@media (max-width: 480px) {
    .login-card[b-d4nuyo0jwq] {
        min-height: 31rem;
        max-height: 31rem;
        padding: 1rem;
        max-width: 290px;
        min-height: 31rem;
    }

    .login-card-reduced[b-d4nuyo0jwq] {
        max-height: 496px !important;
        min-height: 496px !important;
        margin: 0 !important;
    }

    .login-title[b-d4nuyo0jwq] {
        padding: 0;
        margin-bottom: -1.5rem;
    }

    header[b-d4nuyo0jwq] {
        padding: 1rem;
    }

    .cdu-logo[b-d4nuyo0jwq] {
        height: 30px;
    }
}

/* Make sure we account for safe areas on modern devices */
@supports (padding: max(0px)) {
    .login-page[b-d4nuyo0jwq] {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
        padding-bottom: max(0px, env(safe-area-inset-bottom));
    }
}
/* _content/SimpliMed.PWA.TippMeister/Components/ShareCampaignDialog.razor.rz.scp.css */
/* Create this file as Components/Dialogs/ShareCampaignDialog.razor.css */

.share-campaign-modal[b-jza8flyg0m] {
    max-width: 500px;
    width: 90%;
}

.campaign-info[b-jza8flyg0m] {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

    .campaign-info h4[b-jza8flyg0m] {
        margin: 0 0 8px 0;
        color: var(--primary-color);
        font-size: 1.2rem;
    }

.campaign-org[b-jza8flyg0m] {
    margin: 0;
    color: var(--text-secondary-color);
    font-size: 0.95rem;
}

.share-methods[b-jza8flyg0m] {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.share-method[b-jza8flyg0m] {
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: 8px;
    padding: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-label[b-jza8flyg0m] {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-color);
    font-size: 0.95rem;
}

.input-group[b-jza8flyg0m] {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.form-control[b-jza8flyg0m] {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-right: none;
    background-color: white;
    font-size: 0.9rem;
    color: var(--text-color);
}

    .form-control:focus[b-jza8flyg0m] {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 2px rgba(28, 169, 201, 0.1);
    }

.btn-copy[b-jza8flyg0m] {
    padding: 10px 16px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 0.9rem;
}

    .btn-copy:hover[b-jza8flyg0m] {
        background-color: var(--primary-dark-color);
    }

.share-code-display[b-jza8flyg0m] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background-color: white;
    border: 2px dashed var(--primary-color);
    border-radius: 8px;
    margin-bottom: 8px;
}

.share-code[b-jza8flyg0m] {
    font-family: 'Courier New', monospace;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
    letter-spacing: 4px;
}

.btn-copy-small[b-jza8flyg0m] {
    padding: 8px 12px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 0.85rem;
}

    .btn-copy-small:hover[b-jza8flyg0m] {
        background-color: var(--primary-dark-color);
    }

.help-text[b-jza8flyg0m] {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--text-secondary-color);
    line-height: 1.4;
}

.existing-shares[b-jza8flyg0m] {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

    .existing-shares h5[b-jza8flyg0m] {
        margin: 0 0 12px 0;
        font-size: 1rem;
        color: var(--text-color);
    }

.shares-list[b-jza8flyg0m] {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.share-item[b-jza8flyg0m] {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background-color: rgba(0, 0, 0, 0.02);
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.share-id-small[b-jza8flyg0m] {
    font-family: 'Courier New', monospace;
    font-weight: bold;
    color: var(--primary-color);
    background-color: rgba(28, 169, 201, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
}

.share-usage[b-jza8flyg0m] {
    font-size: 0.85rem;
    color: var(--text-secondary-color);
    flex: 1;
}

.share-status[b-jza8flyg0m] {
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 500;
}

    .share-status.active[b-jza8flyg0m] {
        background-color: rgba(76, 175, 80, 0.1);
        color: var(--success-color);
    }

    .share-status.inactive[b-jza8flyg0m] {
        background-color: rgba(158, 158, 158, 0.1);
        color: #666;
    }

.btn-deactivate[b-jza8flyg0m] {
    padding: 4px 12px;
    background-color: rgba(244, 67, 54, 0.1);
    color: var(--error-color);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background-color 0.2s;
}

    .btn-deactivate:hover[b-jza8flyg0m] {
        background-color: rgba(244, 67, 54, 0.2);
    }

.error-message[b-jza8flyg0m] {
    text-align: center;
    padding: 24px;
    color: var(--error-color);
}

    .error-message i[b-jza8flyg0m] {
        font-size: 2rem;
        margin-bottom: 12px;
        opacity: 0.7;
    }

    .error-message p[b-jza8flyg0m] {
        margin: 0;
        font-size: 1rem;
    }

.loading-container[b-jza8flyg0m] {
    text-align: center;
    padding: 32px;
}

.loading-spinner[b-jza8flyg0m] {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(28, 169, 201, 0.1);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin-b-jza8flyg0m 1s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin-b-jza8flyg0m {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading-container p[b-jza8flyg0m] {
    margin: 0;
    color: var(--text-secondary-color);
    font-size: 0.95rem;
}

/* Dark mode support */
:global([data-theme="dark"]) .share-method[b-jza8flyg0m] {
    background-color: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.05);
}

:global([data-theme="dark"]) .form-control[b-jza8flyg0m] {
    background-color: var(--surface-color);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

:global([data-theme="dark"]) .share-code-display[b-jza8flyg0m] {
    background-color: var(--surface-color);
    border-color: var(--primary-color);
}

:global([data-theme="dark"]) .share-item[b-jza8flyg0m] {
    background-color: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.05);
}

:global([data-theme="dark"]) .campaign-info[b-jza8flyg0m],
:global([data-theme="dark"]) .existing-shares[b-jza8flyg0m] {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .share-campaign-modal[b-jza8flyg0m] {
        width: 95%;
        max-width: none;
        margin: 20px;
    }

    .share-code[b-jza8flyg0m] {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }

    .share-item[b-jza8flyg0m] {
        flex-wrap: wrap;
        gap: 8px;
    }

    .share-usage[b-jza8flyg0m] {
        order: 3;
        flex: 1 1 100%;
    }
}
