/* /Components/Controls/AuftragStatusBadge.razor.rz.scp.css */
.status-badge[b-fmc07izkjo] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    border: 2px solid transparent;
}

.status-badge i[b-fmc07izkjo] {
    font-size: 1rem;
}

/* Status-spezifische Farben */
.status-offen[b-fmc07izkjo] {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
    color: #856404;
    border-color: #ffc107;
}

.status-termin[b-fmc07izkjo] {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    color: #0c5460;
    border-color: #17a2b8;
}

.status-im-haus[b-fmc07izkjo] {
    background: linear-gradient(135deg, #cfe2ff 0%, #b6d4fe 100%);
    color: #084298;
    border-color: #0d6efd;
}

.status-bearbeitung[b-fmc07izkjo] {
    background: linear-gradient(135deg, #d1ecf1 0%, #bee5eb 100%);
    color: #0c5460;
    border-color: #17a2b8;
}

.status-fertig[b-fmc07izkjo] {
    background: linear-gradient(135deg, #d1e7dd 0%, #badbcc 100%);
    color: #0f5132;
    border-color: #198754;
}

.status-kontrolle[b-fmc07izkjo] {
    background: linear-gradient(135deg, #cfe2ff 0%, #b6d4fe 100%);
    color: #084298;
    border-color: #0d6efd;
}

.status-abgerechnet[b-fmc07izkjo] {
    background: linear-gradient(135deg, #d1e7dd 0%, #badbcc 100%);
    color: #0f5132;
    border-color: #198754;
}

.status-geschlossen[b-fmc07izkjo] {
    background: linear-gradient(135deg, #d1e7dd 0%, #badbcc 100%);
    color: #0f5132;
    border-color: #198754;
}

.status-storniert[b-fmc07izkjo] {
    background: linear-gradient(135deg, #e2e3e5 0%, #d3d4d5 100%);
    color: #41464b;
    border-color: #6c757d;
}

.status-default[b-fmc07izkjo] {
    background: linear-gradient(135deg, #e2e3e5 0%, #d3d4d5 100%);
    color: #41464b;
    border-color: #6c757d;
}

/* Responsive */
@media (max-width: 768px) {
    .status-badge[b-fmc07izkjo] {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
}
/* /Components/Controls/AuftragStatusDropdown.razor.rz.scp.css */
.status-dropdown-container[b-4kjz8c7hv3] {
    position: relative;
    display: inline-block;
}

.status-dropdown-container .btn[b-4kjz8c7hv3] {
    white-space: nowrap;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-width: 2px;
}

.status-dropdown-menu[b-4kjz8c7hv3] {
    position: fixed;
    min-width: 250px;
    max-width: 300px;
    background: white;
    border: 3px solid var(--racing-orange);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(255, 107, 0, 0.5), 0 0 0 1px rgba(255, 107, 0, 0.1);
    z-index: 9999;
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
    animation: fadeInDown-b-4kjz8c7hv3 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Backdrop to close dropdown when clicking outside */
.status-dropdown-backdrop[b-4kjz8c7hv3] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9998;
    background: transparent;
}

/* Arrow indicator */
.status-dropdown-menu[b-4kjz8c7hv3]::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid var(--racing-orange);
}

.status-dropdown-menu[b-4kjz8c7hv3]::after {
    content: '';
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid white;
}

@keyframes fadeInDown-b-4kjz8c7hv3 {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.status-dropdown-item[b-4kjz8c7hv3] {
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 2px solid #f0f0f0;
    color: var(--racing-black);
    background: white;
}

.status-dropdown-item:last-child[b-4kjz8c7hv3] {
    border-bottom: none;
    border-radius: 0 0 10px 10px;
}

.status-dropdown-item:first-child[b-4kjz8c7hv3] {
    border-radius: 10px 10px 0 0;
}

.status-dropdown-item:hover[b-4kjz8c7hv3] {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe6cc 100%);
    border-left: 5px solid var(--racing-orange);
    padding-left: calc(1.25rem - 5px);
    transform: scale(1.02);
}

.status-dropdown-item.active[b-4kjz8c7hv3] {
    background: linear-gradient(135deg, var(--racing-orange) 0%, var(--racing-orange-dark) 100%);
    color: white;
    font-weight: 700;
    border-left: 5px solid var(--racing-yellow);
    padding-left: calc(1.25rem - 5px);
}

.status-dropdown-item.active:hover[b-4kjz8c7hv3] {
    background: linear-gradient(135deg, var(--racing-orange-light) 0%, var(--racing-orange) 100%);
    transform: scale(1.02);
}

.status-dropdown-item i.bi:first-child[b-4kjz8c7hv3] {
    font-size: 1.1rem;
}

.status-dropdown-item .bi-check-lg[b-4kjz8c7hv3] {
    margin-left: auto;
    font-size: 1.2rem;
    font-weight: bold;
}

/* Responsive */
@@media (max-width: 768px) {
    .status-dropdown-menu[b-4kjz8c7hv3] {
        min-width: 220px;
        max-height: 60vh;
    }

    .status-dropdown-item[b-4kjz8c7hv3] {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
    }
}

/* Custom scrollbar */
.status-dropdown-menu[b-4kjz8c7hv3]::-webkit-scrollbar {
    width: 8px;
}

.status-dropdown-menu[b-4kjz8c7hv3]::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 0 10px 10px 0;
}

.status-dropdown-menu[b-4kjz8c7hv3]::-webkit-scrollbar-thumb {
    background: var(--racing-orange);
    border-radius: 4px;
}

.status-dropdown-menu[b-4kjz8c7hv3]::-webkit-scrollbar-thumb:hover {
    background: var(--racing-orange-dark);
}
/* /Components/Controls/GlobalSearch.razor.rz.scp.css */
.global-search-container[b-s398cl2qxt] {
    position: relative;
    margin-bottom: 2rem;
    max-width: 800px;
    width: 100%;
}

.search-box[b-s398cl2qxt] {
    position: relative;
}

.search-box .input-group-text[b-s398cl2qxt] {
    background-color: white;
    border-right: none;
    color: var(--racing-orange);
    font-size: 1.2rem;
}

.search-box .form-control[b-s398cl2qxt] {
    border-left: none;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.search-box .form-control:focus[b-s398cl2qxt] {
    border-color: var(--racing-orange);
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.3);
}

.search-results-dropdown[b-s398cl2qxt] {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: white;
    border: 2px solid var(--racing-orange);
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.3);
    max-height: 500px;
    overflow-y: auto;
    z-index: 1050;
}

.search-results-section[b-s398cl2qxt] {
    border-bottom: 1px solid #e0e0e0;
}

.search-results-section:last-child[b-s398cl2qxt] {
    border-bottom: none;
}

.search-results-header[b-s398cl2qxt] {
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, var(--racing-black) 0%, var(--racing-dark) 100%);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    border-bottom: 2px solid var(--racing-orange);
}

.search-result-item[b-s398cl2qxt] {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.search-result-item[b-s398cl2qxt]::before {
    content: '👉';
    position: absolute;
    right: 1rem;
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.search-result-item:hover[b-s398cl2qxt]::before {
    opacity: 1;
    right: 0.5rem;
}

.search-result-item:last-child[b-s398cl2qxt] {
    border-bottom: none;
}

.search-result-item:hover[b-s398cl2qxt] {
    background: linear-gradient(135deg, #fff5e6 0%, #ffe6cc 100%);
    border-left: 5px solid var(--racing-orange);
    padding-left: calc(1rem - 5px);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.2);
}

.search-result-item:active[b-s398cl2qxt] {
    transform: translateX(3px) scale(0.98);
    box-shadow: 0 2px 6px rgba(255, 107, 0, 0.3);
}

.search-results-footer[b-s398cl2qxt] {
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    color: #6c757d;
    text-align: center;
    font-size: 0.85rem;
    border-top: 1px solid #e0e0e0;
}

/* Scrollbar Styling */
.search-results-dropdown[b-s398cl2qxt]::-webkit-scrollbar {
    width: 8px;
}

.search-results-dropdown[b-s398cl2qxt]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.search-results-dropdown[b-s398cl2qxt]::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--racing-orange) 0%, var(--racing-orange-dark) 100%);
    border-radius: 4px;
}

.search-results-dropdown[b-s398cl2qxt]::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--racing-orange-light) 0%, var(--racing-orange) 100%);
}

/* Responsive */
@@media (max-width: 768px) {
    .global-search-container[b-s398cl2qxt] {
        max-width: 100%;
    }

    .search-results-dropdown[b-s398cl2qxt] {
        max-height: 400px;
    }

    .search-result-item[b-s398cl2qxt] {
        padding: 0.5rem 0.75rem;
    }

    .search-results-header[b-s398cl2qxt] {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-uigfo84uqe] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-uigfo84uqe] {
    flex: 1;
}

.sidebar[b-uigfo84uqe] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-uigfo84uqe] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-uigfo84uqe]  a, .top-row[b-uigfo84uqe]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-uigfo84uqe]  a:hover, .top-row[b-uigfo84uqe]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-uigfo84uqe]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

/* Mobile First - Stacked Layout */
@media (max-width: 640px) {
    .page[b-uigfo84uqe] {
        flex-direction: column;
    }
    
    .top-row[b-uigfo84uqe] {
        justify-content: center;
        padding-left: 3.5rem !important;
        padding-right: 1rem !important;
    }

    .top-row[b-uigfo84uqe]  a, .top-row[b-uigfo84uqe]  .btn-link {
        margin-left: 0.5rem;
        font-size: 0.9rem;
    }
    
    .sidebar[b-uigfo84uqe] {
        width: 300px;
        height: 100vh;
        position: fixed;
        top: 0;
        left: -300px;
        z-index: 2000;
        transition: left 0.3s ease;
    }
    
    main[b-uigfo84uqe] {
        width: 100%;
        margin-left: 0;
    }
    
    .top-row[b-uigfo84uqe], article[b-uigfo84uqe] {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

/* Tablet */
@media (min-width: 641px) and (max-width: 1024px) {
    .page[b-uigfo84uqe] {
        flex-direction: row;
    }

    .sidebar[b-uigfo84uqe] {
        width: 250px;
        height: 100vh;
        position: fixed;
        top: 0;
        left: -250px;
        z-index: 2000;
        transition: left 0.3s ease;
    }
    
    main[b-uigfo84uqe] {
        margin-left: 0;
        width: 100%;
        transition: margin-left 0.3s ease;
    }

    .top-row[b-uigfo84uqe] {
        position: sticky;
        top: 0;
        z-index: 1;
        padding-left: 4rem !important;
    }

    .top-row[b-uigfo84uqe], article[b-uigfo84uqe] {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
}

/* Desktop */
@media (min-width: 1025px) {
    .page[b-uigfo84uqe] {
        flex-direction: row;
    }

    .sidebar[b-uigfo84uqe] {
        width: 300px;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
    }

    .top-row[b-uigfo84uqe] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-uigfo84uqe]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    main[b-uigfo84uqe] {
        margin-left: 300px;
    }

    .top-row[b-uigfo84uqe], article[b-uigfo84uqe] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-uigfo84uqe] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-uigfo84uqe] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/NavMenu.razor.rz.scp.css */
.navbar-toggler[b-42ae7ntej0] {
    appearance: none;
    cursor: pointer;
    width: 3.5rem;
    height: 3.5rem;
    color: white;
    position: fixed;
    top: 0.5rem;
    left: 0.5rem;
    border: 2px solid var(--racing-orange);
    background: linear-gradient(135deg, var(--racing-orange) 0%, var(--racing-orange-dark) 100%) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") no-repeat center/1.75rem;
    border-radius: 8px;
    z-index: 2001;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.5);
}

.navbar-toggler:checked[b-42ae7ntej0] {
    background: linear-gradient(135deg, var(--racing-red) 0%, #cc0000 100%) url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M6 6L24 24M24 6L6 24'/%3e%3c/svg%3e") no-repeat center/1.5rem;
    border-color: var(--racing-red);
    transform: rotate(90deg);
}

.top-row[b-42ae7ntej0] {
    min-height: 3.5rem;
    background-color: rgba(0,0,0,0.4);
}

.navbar-brand[b-42ae7ntej0] {
    font-size: 1.1rem;
}

.bi[b-42ae7ntej0] {
    display: inline-block;
    position: relative;
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    top: -1px;
    background-size: cover;
}

.bi-house-door-fill-nav-menu[b-42ae7ntej0] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-house-door-fill' viewBox='0 0 16 16'%3E%3Cpath d='M6.5 14.5v-3.505c0-.245.25-.495.5-.495h2c.25 0 .5.25.5.5v3.5a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4a.5.5 0 0 0 .5-.5Z'/%3E%3C/svg%3E");
}

.bi-plus-square-fill-nav-menu[b-42ae7ntej0] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-plus-square-fill' viewBox='0 0 16 16'%3E%3Cpath d='M2 0a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2zm6.5 4.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3a.5.5 0 0 1 1 0z'/%3E%3C/svg%3E");
}

.bi-list-nested-nav-menu[b-42ae7ntej0] {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-list-nested' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.5 11.5A.5.5 0 0 1 5 11h10a.5.5 0 0 1 0 1H5a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 3 7h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm-2-4A.5.5 0 0 1 1 3h10a.5.5 0 0 1 0 1H1a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.nav-item[b-42ae7ntej0] {
    font-size: 0.9rem;
    padding-bottom: 0.5rem;
}

    .nav-item:first-of-type[b-42ae7ntej0] {
        padding-top: 1rem;
    }

    .nav-item:last-of-type[b-42ae7ntej0] {
        padding-bottom: 1rem;
    }

    .nav-item[b-42ae7ntej0]  .nav-link {
        color: #d7d7d7;
        background: none;
        border: none;
        border-radius: 4px;
        height: 3rem;
        display: flex;
        align-items: center;
        line-height: 3rem;
        width: 100%;
    }

.nav-item[b-42ae7ntej0]  a.active {
    background-color: rgba(255,255,255,0.37);
    color: white;
}

.nav-item[b-42ae7ntej0]  .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
    color: white;
}

.nav-scrollable[b-42ae7ntej0] {
    display: none;
}

.navbar-toggler:checked ~ .nav-scrollable[b-42ae7ntej0] {
    display: block;
}

/* Desktop - Always show sidebar */
@media (min-width: 1025px) {
    .navbar-toggler[b-42ae7ntej0] {
        display: none;
    }

    .nav-scrollable[b-42ae7ntej0] {
        /* Never collapse the sidebar for wide screens */
        display: block;

        /* Allow sidebar to scroll for tall menus */
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
}

/* Tablet - Show toggle but sidebar stays on side when open */
@media (min-width: 641px) and (max-width: 1024px) {
    .navbar-toggler[b-42ae7ntej0] {
        display: block;
    }
    
    .nav-scrollable[b-42ae7ntej0] {
        display: none;
        height: calc(100vh - 3.5rem);
        overflow-y: auto;
    }
    
    .navbar-toggler:checked ~ .nav-scrollable[b-42ae7ntej0] {
        display: block;
    }
}

/* Mobile - Full overlay behavior */
@media (max-width: 640px) {
    .navbar-toggler[b-42ae7ntej0] {
        display: block;
    }
    
    .nav-scrollable[b-42ae7ntej0] {
        display: none;
        height: 100vh;
        overflow-y: auto;
    }
    
    .navbar-toggler:checked ~ .nav-scrollable[b-42ae7ntej0] {
        display: block;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-m6g6p4mba4],
.components-reconnect-repeated-attempt-visible[b-m6g6p4mba4],
.components-reconnect-failed-visible[b-m6g6p4mba4],
.components-pause-visible[b-m6g6p4mba4],
.components-resume-failed-visible[b-m6g6p4mba4],
.components-rejoining-animation[b-m6g6p4mba4] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-m6g6p4mba4],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-m6g6p4mba4],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-m6g6p4mba4],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-m6g6p4mba4],
#components-reconnect-modal.components-reconnect-retrying[b-m6g6p4mba4],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-m6g6p4mba4],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-m6g6p4mba4],
#components-reconnect-modal.components-reconnect-failed[b-m6g6p4mba4],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-m6g6p4mba4] {
    display: block;
}


#components-reconnect-modal[b-m6g6p4mba4] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-m6g6p4mba4 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-m6g6p4mba4 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-m6g6p4mba4 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-m6g6p4mba4]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-m6g6p4mba4 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-m6g6p4mba4 {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-m6g6p4mba4 {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-m6g6p4mba4 {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-m6g6p4mba4] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-m6g6p4mba4] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-m6g6p4mba4] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-m6g6p4mba4] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-m6g6p4mba4] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-m6g6p4mba4] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-m6g6p4mba4] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-m6g6p4mba4 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-m6g6p4mba4] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-m6g6p4mba4 {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
