/* _content/BlazeOfGlory.Web/Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-j4sjn8p2cy] {
    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-j4sjn8p2cy] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/BlazeOfGlory.Web/Components/Shared/AccountDisplay.razor.rz.scp.css */
.account-display[b-xqusdn3bin] {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1000;
    font-size: 0.9rem;
    font-weight: 500;
}

.user-info[b-xqusdn3bin] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
}

.user-info:hover[b-xqusdn3bin] {
    border-color: #3498db;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.user-name[b-xqusdn3bin] {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown-arrow[b-xqusdn3bin] {
    font-size: 0.7rem;
    color: #666;
    transition: transform 0.2s ease;
}

.dropdown-arrow.rotated[b-xqusdn3bin] {
    transform: rotate(180deg);
}

.dropdown-menu[b-xqusdn3bin] {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    min-width: 120px;
    margin-top: 0.5rem;
    overflow: hidden;
    animation: slideDown-b-xqusdn3bin 0.2s ease-out;
}

@keyframes slideDown-b-xqusdn3bin {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item[b-xqusdn3bin] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1rem;
    color: #333;
    text-decoration: none;
    transition: background-color 0.2s ease;
    font-size: 0.85rem;
}

.dropdown-item:hover[b-xqusdn3bin] {
    background-color: #f8f9fa;
    color: #e74c3c;
    text-decoration: none;
}

.dropdown-item i[b-xqusdn3bin] {
    width: 14px;
    color: #6c757d;
    font-size: 0.8rem;
}

.dropdown-item:hover i[b-xqusdn3bin] {
    color: #e74c3c;
}

.login-link[b-xqusdn3bin] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #3498db;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.login-link:hover[b-xqusdn3bin] {
    background: #2980b9;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    color: white;
    text-decoration: none;
}

.login-link i[b-xqusdn3bin] {
    font-size: 0.8rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .account-display[b-xqusdn3bin] {
        top: 0.5rem;
        right: 0.5rem;
    }
    
    .user-info[b-xqusdn3bin], .login-link[b-xqusdn3bin] {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .user-name[b-xqusdn3bin] {
        max-width: 80px;
    }
}
/* _content/BlazeOfGlory.Web/Components/Shared/ParticipantsTooltip.razor.rz.scp.css */
.participants-tooltip-card[b-2sbzpyagzl] {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    width: 700px;
    max-height: 500px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.participants-tooltip-header[b-2sbzpyagzl] {
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.participants-tooltip-title[b-2sbzpyagzl] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.participants-tooltip-body[b-2sbzpyagzl] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-y: auto;
    flex: 1;
    padding-right: 0.5rem;
}

/* Custom scrollbar styling for webkit browsers */
.participants-tooltip-body[b-2sbzpyagzl]::-webkit-scrollbar {
    width: 6px;
}

.participants-tooltip-body[b-2sbzpyagzl]::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.participants-tooltip-body[b-2sbzpyagzl]::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.participants-tooltip-body[b-2sbzpyagzl]::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.participants-table[b-2sbzpyagzl] {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.participants-table thead[b-2sbzpyagzl] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.participants-table th[b-2sbzpyagzl] {
    padding: 12px 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.participants-table th:first-child[b-2sbzpyagzl] {
    border-top-left-radius: 6px;
}

.participants-table th:last-child[b-2sbzpyagzl] {
    border-top-right-radius: 6px;
}

.participants-table tbody tr[b-2sbzpyagzl] {
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
}

.participants-table tbody tr:last-child[b-2sbzpyagzl] {
    border-bottom: none;
}

.participants-table tbody tr:hover[b-2sbzpyagzl] {
    background-color: #f8f9fa;
}

.participants-table tbody tr:nth-child(even)[b-2sbzpyagzl] {
    background-color: #fafbfc;
}

.participants-table tbody tr:nth-child(even):hover[b-2sbzpyagzl] {
    background-color: #f1f3f4;
}

.participants-table td[b-2sbzpyagzl] {
    padding: 12px 16px;
    font-size: 0.875rem;
    vertical-align: middle;
}

.user-cell[b-2sbzpyagzl] {
    font-weight: 500;
    color: #2563eb;
}

.car-cell[b-2sbzpyagzl] {
    color: #059669;
    font-weight: 500;
}

.setup-cell[b-2sbzpyagzl] {
    color: #7c3aed;
    font-weight: 500;
}
/* _content/BlazeOfGlory.Web/Components/Shared/SetupTooltip.razor.rz.scp.css */
.setup-tooltip-card[b-rjsueldf7m] {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    width: 600px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.setup-tooltip-header[b-rjsueldf7m] {
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.setup-tooltip-title[b-rjsueldf7m] {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.setup-tooltip-body[b-rjsueldf7m] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.setup-tooltip-section h6[b-rjsueldf7m] {
    font-size: 1rem;
    font-weight: 600;
    color: #555;
    margin-bottom: 0.75rem;
}

.setup-tooltip-row[b-rjsueldf7m] {
    display: flex;
    justify-content: space-between;
    padding: 0.25rem 0;
}

.setup-tooltip-label[b-rjsueldf7m] {
    font-weight: 500;
    color: #666;
}

.setup-tooltip-value[b-rjsueldf7m] {
    font-weight: 400;
    color: #333;
}
