/* /Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-0smx4y0emw] {
    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-0smx4y0emw] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Layout/PageLayout.razor.rz.scp.css */
.page-container[b-l1wz4fd4vo] {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem 0;
}

.page-header[b-l1wz4fd4vo] {
    background: white;
    border-radius: 15px 15px 0 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section[b-l1wz4fd4vo] {
    display: flex;
    align-items: center;
}

.logo-section img[b-l1wz4fd4vo] {
    max-height: 60px;
    width: auto;
}

.header-buttons[b-l1wz4fd4vo] {
    display: flex;
    gap: 1rem;
}

.btn-page[b-l1wz4fd4vo] {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-page:hover[b-l1wz4fd4vo] {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-page:active[b-l1wz4fd4vo] {
    transform: translateY(0);
}

.page-content[b-l1wz4fd4vo] {
    background: white;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 2rem 3rem;
    margin-top: 0;
}

@media (max-width: 768px) {
    .page-header[b-l1wz4fd4vo] {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }

    .logo-section[b-l1wz4fd4vo] {
        justify-content: center;
    }

    .header-buttons[b-l1wz4fd4vo] {
        flex-direction: column;
    }

    .btn-page[b-l1wz4fd4vo] {
        width: 100%;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-lwslg25z8h],
.components-reconnect-repeated-attempt-visible[b-lwslg25z8h],
.components-reconnect-failed-visible[b-lwslg25z8h],
.components-pause-visible[b-lwslg25z8h],
.components-resume-failed-visible[b-lwslg25z8h],
.components-rejoining-animation[b-lwslg25z8h] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-lwslg25z8h],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-lwslg25z8h],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-lwslg25z8h],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-lwslg25z8h],
#components-reconnect-modal.components-reconnect-retrying[b-lwslg25z8h],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-lwslg25z8h],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-lwslg25z8h],
#components-reconnect-modal.components-reconnect-failed[b-lwslg25z8h],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-lwslg25z8h] {
    display: block;
}


#components-reconnect-modal[b-lwslg25z8h] {
    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-lwslg25z8h 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-lwslg25z8h 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-lwslg25z8h 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-lwslg25z8h]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-lwslg25z8h 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-lwslg25z8h {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-lwslg25z8h {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-lwslg25z8h {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-lwslg25z8h] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-lwslg25z8h] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-lwslg25z8h] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-lwslg25z8h] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-lwslg25z8h] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-lwslg25z8h] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-lwslg25z8h] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-lwslg25z8h 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-lwslg25z8h] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-lwslg25z8h {
    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;
    }
}
/* /Components/Pages/Dashboard.razor.rz.scp.css */
.dashboard-container[b-hq7zrsk6gw] {
    min-height: 100vh;
    padding: 2rem 0;
}

.dashboard-container.theme-purple[b-hq7zrsk6gw] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.dashboard-container.theme-blue[b-hq7zrsk6gw] {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.dashboard-container.theme-green[b-hq7zrsk6gw] {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
}

.dashboard-header[b-hq7zrsk6gw] {
    background: white;
    border-radius: 15px 15px 0 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    box-sizing: border-box;
}

.logo-section[b-hq7zrsk6gw] {
    display: flex;
    align-items: center;
}

.logo-section img[b-hq7zrsk6gw] {
    max-height: 60px;
    width: auto;
}

.header-buttons[b-hq7zrsk6gw] {
    display: flex;
    gap: 1rem;
}

.btn-dashboard[b-hq7zrsk6gw] {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-dashboard:hover[b-hq7zrsk6gw] {
    transform: translateY(-2px);
}

.btn-dashboard:active[b-hq7zrsk6gw] {
    transform: translateY(0);
}

.dashboard-content[b-hq7zrsk6gw] {
    background: white;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 90%;
    margin: 0 auto;
    box-sizing: border-box;
}

.tabs[b-hq7zrsk6gw] {
    display: flex;
    border-bottom: 2px solid #e2e8f0;
    padding: 0 3rem;
}

.tab-button[b-hq7zrsk6gw] {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    background: transparent;
    color: #718096;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    margin-bottom: -2px;
}

.tab-button:hover[b-hq7zrsk6gw] {
    color: #667eea;
}

.tab-button.active[b-hq7zrsk6gw] {
    color: #667eea;
    border-bottom-color: #667eea;
}

.tab-content[b-hq7zrsk6gw] {
    padding: 2rem 3rem;
}

.tab-pane h3[b-hq7zrsk6gw] {
    color: #2d3748;
    margin-bottom: 1rem;
}

.tab-pane p[b-hq7zrsk6gw] {
    color: #718096;
}

.debug-info[b-hq7zrsk6gw] {
    background-color: #fffbeb;
    border-left: 4px solid #f59e0b;
    padding: 0.75rem 1rem;
    margin: 1rem 0;
    border-radius: 4px;
    color: #92400e;
    font-size: 0.875rem;
    font-weight: 600;
}

.eventlogs-table[b-hq7zrsk6gw] {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.eventlogs-table thead[b-hq7zrsk6gw] {
    background-color: #f7fafc;
}

.eventlogs-table th[b-hq7zrsk6gw] {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #2d3748;
    border-bottom: 2px solid #e2e8f0;
}

.eventlogs-table tbody tr[b-hq7zrsk6gw] {
    border-bottom: 1px solid #e2e8f0;
    transition: background-color 0.2s ease;
}

.eventlogs-table tbody tr:hover[b-hq7zrsk6gw] {
    background-color: #f7fafc;
}

.eventlogs-table td[b-hq7zrsk6gw] {
    padding: 1rem;
    color: #4a5568;
}

.no-data[b-hq7zrsk6gw] {
    text-align: center;
    padding: 2rem;
    color: #a0aec0;
    font-style: italic;
}

.pagination[b-hq7zrsk6gw] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1rem 0;
}

.btn-pagination[b-hq7zrsk6gw] {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    background: white;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-pagination:hover:not(:disabled)[b-hq7zrsk6gw] {
    background-color: #f7fafc;
    border-color: #cbd5e0;
}

.btn-pagination:disabled[b-hq7zrsk6gw] {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-info[b-hq7zrsk6gw] {
    font-size: 0.875rem;
    color: #718096;
    font-weight: 500;
}

.eventlogs-toolbar[b-hq7zrsk6gw] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.eventlogs-toolbar h3[b-hq7zrsk6gw] {
    margin: 0;
}

.btn-add[b-hq7zrsk6gw] {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add:hover[b-hq7zrsk6gw] {
    transform: translateY(-2px);
}

.btn-action[b-hq7zrsk6gw] {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-right: 0.5rem;
}

.btn-edit[b-hq7zrsk6gw] {
    background-color: #3b82f6;
    color: white;
}

.btn-edit:hover[b-hq7zrsk6gw] {
    background-color: #2563eb;
}

.btn-delete[b-hq7zrsk6gw] {
    background-color: #ef4444;
    color: white;
}

.btn-delete:hover[b-hq7zrsk6gw] {
    background-color: #dc2626;
}

.modal-overlay[b-hq7zrsk6gw] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content[b-hq7zrsk6gw] {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header[b-hq7zrsk6gw] {
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3[b-hq7zrsk6gw] {
    margin: 0;
    color: #2d3748;
}

.btn-close[b-hq7zrsk6gw] {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #718096;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.btn-close:hover[b-hq7zrsk6gw] {
    background-color: #f7fafc;
    color: #2d3748;
}

.modal-body[b-hq7zrsk6gw] {
    padding: 1.5rem;
}

.form-group[b-hq7zrsk6gw] {
    margin-bottom: 1.5rem;
}

.form-group label[b-hq7zrsk6gw] {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2d3748;
}

.form-control[b-hq7zrsk6gw] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.form-control:focus[b-hq7zrsk6gw] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.modal-footer[b-hq7zrsk6gw] {
    padding: 1.5rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.btn-secondary[b-hq7zrsk6gw] {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: white;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-secondary:hover[b-hq7zrsk6gw] {
    background-color: #f7fafc;
    border-color: #cbd5e0;
}

.btn-primary[b-hq7zrsk6gw] {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover[b-hq7zrsk6gw] {
    transform: translateY(-2px);
}

.btn-danger[b-hq7zrsk6gw] {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    background-color: #ef4444;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-danger:hover[b-hq7zrsk6gw] {
    background-color: #dc2626;
    transform: translateY(-2px);
}

.alert[b-hq7zrsk6gw] {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    margin-top: 1rem;
}

.alert-danger[b-hq7zrsk6gw] {
    background-color: #fee;
    color: #c81e1e;
    border: 1px solid #fcc;
}

.alert-success[b-hq7zrsk6gw] {
    background-color: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

@media (max-width: 768px) {
    .dashboard-header[b-hq7zrsk6gw] {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
        width: 95%;
    }

    .logo-section[b-hq7zrsk6gw] {
        justify-content: center;
    }

    .header-buttons[b-hq7zrsk6gw] {
        flex-direction: column;
    }

    .btn-dashboard[b-hq7zrsk6gw] {
        width: 100%;
    }

    .dashboard-content[b-hq7zrsk6gw] {
        width: 95%;
    }

    .tabs[b-hq7zrsk6gw] {
        padding: 0 1rem;
    }

    .tab-button[b-hq7zrsk6gw] {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .tab-content[b-hq7zrsk6gw] {
        padding: 1.5rem;
    }

    .eventlogs-table[b-hq7zrsk6gw] {
        font-size: 0.875rem;
    }

    .eventlogs-table th[b-hq7zrsk6gw],
    .eventlogs-table td[b-hq7zrsk6gw] {
        padding: 0.75rem 0.5rem;
    }

    .pagination[b-hq7zrsk6gw] {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .btn-pagination[b-hq7zrsk6gw] {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }
}
/* /Components/Pages/LogEntry.razor.rz.scp.css */
.logentry-container[b-2i93im0zhm] {
    min-height: 100vh;
    padding: 1rem 0;
}

.logentry-container.theme-purple[b-2i93im0zhm] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.logentry-container.theme-blue[b-2i93im0zhm] {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.logentry-container.theme-green[b-2i93im0zhm] {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
}

.logentry-header[b-2i93im0zhm] {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto 1rem auto;
    box-sizing: border-box;
}

.logo-section[b-2i93im0zhm] {
    display: flex;
    align-items: center;
}

.logo-section img[b-2i93im0zhm] {
    max-height: 45px;
    width: auto;
}

.header-buttons[b-2i93im0zhm] {
    display: flex;
    gap: 0.75rem;
}

.btn-logentry[b-2i93im0zhm] {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-logentry:hover[b-2i93im0zhm] {
    transform: translateY(-2px);
}

.btn-logentry:active[b-2i93im0zhm] {
    transform: translateY(0);
}

.logentry-main[b-2i93im0zhm] {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.logentry-section[b-2i93im0zhm] {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.section-header[b-2i93im0zhm] {
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.section-title-row[b-2i93im0zhm] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title[b-2i93im0zhm] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
}

.btn-save[b-2i93im0zhm] {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-save:hover:not(:disabled)[b-2i93im0zhm] {
    transform: translateY(-2px);
}

.btn-save:disabled[b-2i93im0zhm] {
    opacity: 0.6;
    cursor: not-allowed;
}

.section-content[b-2i93im0zhm] {
    padding: 1.25rem;
}

.section-content p[b-2i93im0zhm] {
    color: #718096;
    margin: 0;
}

.myinfo-grid[b-2i93im0zhm] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.info-item[b-2i93im0zhm] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.info-item.full-width[b-2i93im0zhm] {
    grid-column: 1 / -1;
}

.info-item label[b-2i93im0zhm] {
    font-weight: 600;
    color: #4a5568;
    font-size: 0.85rem;
}

.info-item span[b-2i93im0zhm] {
    color: #2d3748;
    font-size: 0.95rem;
    padding: 0.35rem 0;
}

.info-input[b-2i93im0zhm] {
    width: 100%;
    padding: 0.4rem 0.65rem;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    font-size: 0.95rem;
    color: #2d3748;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.info-input:focus[b-2i93im0zhm] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1);
}

.info-textarea[b-2i93im0zhm] {
    width: 100%;
    padding: 0.4rem 0.65rem;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    font-size: 0.95rem;
    color: #2d3748;
    transition: all 0.2s ease;
    box-sizing: border-box;
    resize: vertical;
    font-family: inherit;
}

.info-textarea:focus[b-2i93im0zhm] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1);
}

.time-control[b-2i93im0zhm] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.time-display[b-2i93im0zhm] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    font-family: 'Courier New', monospace;
    min-width: 90px;
}

.time-buttons[b-2i93im0zhm] {
    display: flex;
    gap: 0.4rem;
}

.btn-time-control[b-2i93im0zhm] {
    padding: 0.3rem 0.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    background: white;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
}

.btn-time-control span[b-2i93im0zhm] {
    font-weight: bold;
}

.btn-time-control:hover[b-2i93im0zhm] {
    background-color: #f7fafc;
    border-color: #cbd5e0;
}

.btn-time-control.btn-start[b-2i93im0zhm] {
    color: #10b981;
}

.btn-time-control.btn-start span[b-2i93im0zhm] {
    font-weight: bold;
    color: #10b981;
}

.btn-time-control.btn-start:hover[b-2i93im0zhm] {
    background-color: #f0fdf4;
    border-color: #10b981;
}

.btn-time-control.btn-stop[b-2i93im0zhm] {
    color: #ef4444;
}

.btn-time-control.btn-stop span[b-2i93im0zhm] {
    font-weight: bold;
    color: #ef4444;
}

.btn-time-control.btn-stop:hover[b-2i93im0zhm] {
    background-color: #fee;
    border-color: #ef4444;
}

.btn-time-control.btn-edit[b-2i93im0zhm] {
    color: #3b82f6;
}

.btn-time-control.btn-edit span[b-2i93im0zhm] {
    font-weight: bold;
    color: #3b82f6;
    font-size: 0.7rem;
}

.btn-time-control.btn-edit:hover[b-2i93im0zhm] {
    background-color: #eff6ff;
    border-color: #3b82f6;
}

.mt-1[b-2i93im0zhm] {
    margin-top: 0.25rem;
}

.alert[b-2i93im0zhm] {
    padding: 0.65rem;
    border-radius: 5px;
    margin-top: 0.75rem;
    font-size: 0.9rem;
}

.alert-danger[b-2i93im0zhm] {
    background-color: #fee;
    color: #c53030;
    border: 1px solid #fc8181;
}

.alert-success[b-2i93im0zhm] {
    background-color: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.mt-2[b-2i93im0zhm] {
    margin-top: 0.5rem;
}

.mt-3[b-2i93im0zhm] {
    margin-top: 0.75rem;
}

/* QSO Entry Form */
.btn-log[b-2i93im0zhm] {
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-log:hover:not(:disabled)[b-2i93im0zhm] {
    transform: translateY(-2px);
}

.btn-log:disabled[b-2i93im0zhm] {
    opacity: 0.6;
    cursor: not-allowed;
}

.qso-grid[b-2i93im0zhm] {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.qso-item[b-2i93im0zhm] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.qso-item.qso-item-wide[b-2i93im0zhm] {
    grid-column: 1 / -1;
}

.qso-item label[b-2i93im0zhm] {
    font-weight: 600;
    color: #4a5568;
    font-size: 0.85rem;
}

.qso-input[b-2i93im0zhm] {
    width: 100%;
    padding: 0.4rem 0.65rem;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    font-size: 0.95rem;
    color: #2d3748;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.qso-input:focus[b-2i93im0zhm] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1);
}

.qso-textarea[b-2i93im0zhm] {
    width: 100%;
    padding: 0.4rem 0.65rem;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    font-size: 0.95rem;
    color: #2d3748;
    transition: all 0.2s ease;
    box-sizing: border-box;
    resize: vertical;
    font-family: inherit;
}

.qso-textarea:focus[b-2i93im0zhm] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1);
}

/* Tabs Section */
.logentry-section-tabs .section-header[b-2i93im0zhm] {
    display: none;
}

.section-tabs[b-2i93im0zhm] {
    display: flex;
    border-bottom: 2px solid #e2e8f0;
    padding: 0 1.5rem;
    background: white;
}

.section-tab[b-2i93im0zhm] {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    background: transparent;
    color: #718096;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    margin-bottom: -2px;
}

.section-tab:hover[b-2i93im0zhm] {
    color: #667eea;
}

.section-tab.active[b-2i93im0zhm] {
    color: #667eea;
    border-bottom-color: #667eea;
}

.tab-pane[b-2i93im0zhm] {
    min-height: 150px;
}

.tab-pane p[b-2i93im0zhm] {
    color: #718096;
    margin: 0;
}

/* Spots Grid Styling */
.spots-toolbar[b-2i93im0zhm] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.spots-toolbar h3[b-2i93im0zhm] {
    color: #2d3748;
    margin: 0;
    font-size: 1.1rem;
}

.spots-controls[b-2i93im0zhm] {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: wrap;
}

.filter-group[b-2i93im0zhm] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.filter-group label[b-2i93im0zhm] {
    font-weight: 600;
    color: #4a5568;
    font-size: 0.85rem;
    white-space: nowrap;
}

.filter-select[b-2i93im0zhm] {
    padding: 0.4rem 0.65rem;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    font-size: 0.85rem;
    color: #2d3748;
    background-color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 110px;
}

.filter-select:hover[b-2i93im0zhm] {
    border-color: #cbd5e0;
}

.filter-select:focus[b-2i93im0zhm] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1);
}

.btn-refresh[b-2i93im0zhm] {
    padding: 0.4rem 0.85rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 5px;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-refresh:hover:not(:disabled)[b-2i93im0zhm] {
    transform: translateY(-2px);
}

.btn-refresh:disabled[b-2i93im0zhm] {
    opacity: 0.6;
    cursor: not-allowed;
}

.spots-grid-container[b-2i93im0zhm] {
    overflow-x: auto;
    margin-bottom: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
}

.spots-grid[b-2i93im0zhm] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.spots-grid thead[b-2i93im0zhm] {
    background-color: #f7fafc;
    position: sticky;
    top: 0;
}

.spots-grid th[b-2i93im0zhm] {
    padding: 0.6rem;
    text-align: left;
    font-weight: 600;
    color: #2d3748;
    border-bottom: 2px solid #e2e8f0;
    white-space: nowrap;
    font-size: 0.85rem;
}

.spots-grid td[b-2i93im0zhm] {
    padding: 0.6rem;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
}

.spots-grid tbody tr:hover[b-2i93im0zhm] {
    background-color: #f7fafc;
    cursor: pointer;
    transform: scale(1.005);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.spots-grid tbody tr:active[b-2i93im0zhm] {
    background-color: #e2e8f0;
}

.spots-grid tbody tr:last-child td[b-2i93im0zhm] {
    border-bottom: none;
}

.spots-info[b-2i93im0zhm] {
    display: flex;
    justify-content: flex-end;
    color: #718096;
    font-size: 0.8rem;
    font-style: italic;
}

.no-data[b-2i93im0zhm] {
    text-align: center;
    color: #a0aec0;
    padding: 1.5rem;
    font-style: italic;
}

/* QSO Grid */
.qsos-grid-container[b-2i93im0zhm] {
    overflow-x: auto;
    margin-bottom: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
}

.qsos-table[b-2i93im0zhm] {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.qsos-table thead[b-2i93im0zhm] {
    background-color: #f7fafc;
    position: sticky;
    top: 0;
}

.qsos-table th[b-2i93im0zhm] {
    padding: 0.6rem;
    text-align: left;
    font-weight: 600;
    color: #2d3748;
    border-bottom: 2px solid #e2e8f0;
    white-space: nowrap;
    font-size: 0.85rem;
}

.qsos-table td[b-2i93im0zhm] {
    padding: 0.6rem;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
}

.qsos-table tbody tr:hover[b-2i93im0zhm] {
    background-color: #f7fafc;
}

.qsos-table tbody tr:last-child td[b-2i93im0zhm] {
    border-bottom: none;
}

.btn-action[b-2i93im0zhm] {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-right: 0.25rem;
}

.btn-action.btn-edit[b-2i93im0zhm] {
    background-color: #3b82f6;
    color: white;
}

.btn-action.btn-edit:hover[b-2i93im0zhm] {
    background-color: #2563eb;
}

.btn-action.btn-delete[b-2i93im0zhm] {
    background-color: #ef4444;
    color: white;
}

.btn-action.btn-delete:hover[b-2i93im0zhm] {
    background-color: #dc2626;
}

/* Pagination */
.pagination[b-2i93im0zhm] {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0;
}

.btn-pagination[b-2i93im0zhm] {
    padding: 0.4rem 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 5px;
    border: 1px solid #e2e8f0;
    background: white;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-pagination:hover:not(:disabled)[b-2i93im0zhm] {
    background-color: #f7fafc;
    border-color: #cbd5e0;
}

.btn-pagination:disabled[b-2i93im0zhm] {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-info[b-2i93im0zhm] {
    font-size: 0.85rem;
    color: #4a5568;
    margin: 0 0.5rem;
}

/* Modal */
.modal-overlay[b-2i93im0zhm] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content[b-2i93im0zhm] {
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header[b-2i93im0zhm] {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3[b-2i93im0zhm] {
    margin: 0;
    font-size: 1.25rem;
    color: #2d3748;
}

.btn-close[b-2i93im0zhm] {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #718096;
    cursor: pointer;
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.btn-close:hover[b-2i93im0zhm] {
    background-color: #f7fafc;
    color: #2d3748;
}

.modal-body[b-2i93im0zhm] {
    padding: 1.5rem;
}

.modal-footer[b-2i93im0zhm] {
    padding: 1rem 1.5rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
}

.qso-edit-grid[b-2i93im0zhm] {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.form-group[b-2i93im0zhm] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-group.full-width[b-2i93im0zhm] {
    grid-column: 1 / -1;
}

.form-group label[b-2i93im0zhm] {
    font-weight: 600;
    color: #4a5568;
    font-size: 0.85rem;
}

.form-control[b-2i93im0zhm] {
    padding: 0.4rem 0.65rem;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    font-size: 0.95rem;
    color: #2d3748;
    transition: all 0.2s ease;
}

.form-control:focus[b-2i93im0zhm] {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1);
}

.btn[b-2i93im0zhm] {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary[b-2i93im0zhm] {
    background-color: #3b82f6;
    color: white;
}

.btn-primary:hover[b-2i93im0zhm] {
    background-color: #2563eb;
}

.btn-secondary[b-2i93im0zhm] {
    background-color: #6b7280;
    color: white;
}

.btn-secondary:hover[b-2i93im0zhm] {
    background-color: #4b5563;
}

.btn-danger[b-2i93im0zhm] {
    background-color: #ef4444;
    color: white;
}

.btn-danger:hover[b-2i93im0zhm] {
    background-color: #dc2626;
}

@media (max-width: 768px) {
    .logentry-header[b-2i93im0zhm] {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
        width: 95%;
    }

    .logo-section[b-2i93im0zhm] {
        justify-content: center;
    }

    .header-buttons[b-2i93im0zhm] {
        flex-direction: column;
    }

    .btn-logentry[b-2i93im0zhm] {
        width: 100%;
    }

    .logentry-main[b-2i93im0zhm] {
        width: 95%;
        gap: 0.15rem;
    }

    .section-header[b-2i93im0zhm] {
        padding: 0.75rem 1.5rem;
    }

    .section-content[b-2i93im0zhm] {
        padding: 1.5rem;
    }

    .myinfo-grid[b-2i93im0zhm] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .qso-grid[b-2i93im0zhm] {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .qso-edit-grid[b-2i93im0zhm] {
        grid-template-columns: 1fr;
    }

    .section-tabs[b-2i93im0zhm] {
        padding: 0 1rem;
        overflow-x: auto;
    }

    .section-tab[b-2i93im0zhm] {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .spots-toolbar[b-2i93im0zhm] {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .spots-toolbar h3[b-2i93im0zhm] {
        text-align: center;
    }

    .spots-controls[b-2i93im0zhm] {
        flex-direction: column;
        width: 100%;
    }

    .filter-group[b-2i93im0zhm] {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .filter-select[b-2i93im0zhm] {
        width: 100%;
    }

    .btn-refresh[b-2i93im0zhm] {
        width: 100%;
    }

    .spots-grid[b-2i93im0zhm],
    .qsos-table[b-2i93im0zhm] {
        font-size: 0.8rem;
    }

    .spots-grid th[b-2i93im0zhm],
    .spots-grid td[b-2i93im0zhm],
    .qsos-table th[b-2i93im0zhm],
    .qsos-table td[b-2i93im0zhm] {
        padding: 0.5rem;
    }

    .modal-content[b-2i93im0zhm] {
        width: 95%;
        max-height: 85vh;
    }

    .pagination[b-2i93im0zhm] {
        flex-wrap: wrap;
        gap: 0.25rem;
    }

    .pagination-info[b-2i93im0zhm] {
        width: 100%;
        text-align: center;
        order: -1;
        margin-bottom: 0.5rem;
    }
}

/* Map Styles */
.map-container[b-2i93im0zhm] {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.map-info[b-2i93im0zhm] {
    background-color: #f7fafc;
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.map-info h4[b-2i93im0zhm] {
    margin: 0 0 0.5rem 0;
    color: #2d3748;
    font-size: 1.1rem;
}

.map-info p[b-2i93im0zhm] {
    margin: 0.25rem 0;
    color: #4a5568;
    font-size: 0.9rem;
}

#parkMap[b-2i93im0zhm] {
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
/* /Components/Pages/Login.razor.rz.scp.css */
.login-container[b-f5bl5xkunx] {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem 0;
    display: flex;
    align-items: center;
}

.login-card[b-f5bl5xkunx] {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border: none;
}

.login-card .card-header[b-f5bl5xkunx] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border: none;
    text-align: center;
}

.login-card .card-header h3[b-f5bl5xkunx] {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.login-card .card-body[b-f5bl5xkunx] {
    padding: 2.5rem;
}

.form-label[b-f5bl5xkunx] {
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control[b-f5bl5xkunx] {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus[b-f5bl5xkunx] {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

.btn-login[b-f5bl5xkunx] {
    width: 100%;
    padding: 0.875rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
}

.btn-login:hover:not(:disabled)[b-f5bl5xkunx] {
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(102, 126, 234, 0.4);
}

.btn-login:active:not(:disabled)[b-f5bl5xkunx] {
    transform: translateY(0);
}

.btn-login:disabled[b-f5bl5xkunx] {
    opacity: 0.7;
    cursor: not-allowed;
}

.alert[b-f5bl5xkunx] {
    border-radius: 8px;
    border: none;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.alert-danger[b-f5bl5xkunx] {
    background-color: #fee;
    color: #c53030;
}

.mb-3[b-f5bl5xkunx] {
    margin-bottom: 1.5rem !important;
}

.register-link[b-f5bl5xkunx] {
    color: #4a5568;
    font-size: 0.9rem;
    margin: 0;
}

.register-link a[b-f5bl5xkunx] {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.register-link a:hover[b-f5bl5xkunx] {
    color: #764ba2;
    text-decoration: underline;
}

[b-f5bl5xkunx] .validation-message {
    color: #c53030;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}
/* /Components/Pages/Profiles.razor.rz.scp.css */
.profiles-container[b-m0t4y46w4a] {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem 0;
}

.profiles-header[b-m0t4y46w4a] {
    background: white;
    border-radius: 15px 15px 0 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    box-sizing: border-box;
}

.logo-section[b-m0t4y46w4a] {
    display: flex;
    align-items: center;
}

.logo-section img[b-m0t4y46w4a] {
    max-height: 60px;
    width: auto;
}

.header-buttons[b-m0t4y46w4a] {
    display: flex;
    gap: 1rem;
}

.btn-profiles[b-m0t4y46w4a] {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-profiles:hover[b-m0t4y46w4a] {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-profiles:active[b-m0t4y46w4a] {
    transform: translateY(0);
}

.profiles-content[b-m0t4y46w4a] {
    background: white;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 90%;
    margin: 0 auto;
    padding: 2rem 3rem;
    box-sizing: border-box;
}

.profiles-toolbar[b-m0t4y46w4a] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.profiles-toolbar h2[b-m0t4y46w4a] {
    color: #2d3748;
    margin: 0;
}

.btn-add[b-m0t4y46w4a] {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add:hover[b-m0t4y46w4a] {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.debug-info[b-m0t4y46w4a] {
    background-color: #fffbeb;
    border-left: 4px solid #f59e0b;
    padding: 0.75rem 1rem;
    margin: 1rem 0;
    border-radius: 4px;
    color: #92400e;
    font-size: 0.875rem;
    font-weight: 600;
}

.no-data[b-m0t4y46w4a] {
    color: #718096;
    text-align: center;
    padding: 3rem;
    font-size: 1.1rem;
}

.profiles-table[b-m0t4y46w4a] {
    width: 100%;
    border-collapse: collapse;
}

.profiles-table thead[b-m0t4y46w4a] {
    background-color: #f7fafc;
}

.profiles-table th[b-m0t4y46w4a] {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #2d3748;
    border-bottom: 2px solid #e2e8f0;
}

.profiles-table td[b-m0t4y46w4a] {
    padding: 1rem;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
}

.profiles-table tbody tr:hover[b-m0t4y46w4a] {
    background-color: #f7fafc;
}

.btn-action[b-m0t4y46w4a] {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-right: 0.5rem;
}

.btn-edit[b-m0t4y46w4a] {
    background-color: #4299e1;
    color: white;
}

.btn-edit:hover[b-m0t4y46w4a] {
    background-color: #3182ce;
}

.btn-delete[b-m0t4y46w4a] {
    background-color: #f56565;
    color: white;
}

.btn-delete:hover[b-m0t4y46w4a] {
    background-color: #e53e3e;
}

.modal-overlay[b-m0t4y46w4a] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content[b-m0t4y46w4a] {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header[b-m0t4y46w4a] {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3[b-m0t4y46w4a] {
    margin: 0;
    color: #2d3748;
}

.btn-close[b-m0t4y46w4a] {
    background: none;
    border: none;
    font-size: 2rem;
    color: #718096;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.btn-close:hover[b-m0t4y46w4a] {
    color: #2d3748;
}

.modal-body[b-m0t4y46w4a] {
    padding: 2rem;
}

.form-group[b-m0t4y46w4a] {
    margin-bottom: 1.5rem;
}

.form-group label[b-m0t4y46w4a] {
    display: block;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control[b-m0t4y46w4a] {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-control:focus[b-m0t4y46w4a] {
    border-color: #667eea;
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.alert[b-m0t4y46w4a] {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.alert-danger[b-m0t4y46w4a] {
    background-color: #fee;
    color: #c53030;
}

.modal-footer[b-m0t4y46w4a] {
    padding: 1.5rem 2rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.btn[b-m0t4y46w4a] {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary[b-m0t4y46w4a] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover[b-m0t4y46w4a] {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-secondary[b-m0t4y46w4a] {
    background-color: #e2e8f0;
    color: #4a5568;
}

.btn-secondary:hover[b-m0t4y46w4a] {
    background-color: #cbd5e0;
}

.btn-danger[b-m0t4y46w4a] {
    background-color: #f56565;
    color: white;
}

.btn-danger:hover[b-m0t4y46w4a] {
    background-color: #e53e3e;
}

@media (max-width: 768px) {
    .profiles-header[b-m0t4y46w4a] {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
        width: 95%;
    }

    .logo-section[b-m0t4y46w4a] {
        justify-content: center;
    }

    .header-buttons[b-m0t4y46w4a] {
        flex-direction: column;
    }

    .btn-profiles[b-m0t4y46w4a] {
        width: 100%;
    }

    .profiles-content[b-m0t4y46w4a] {
        width: 95%;
        padding: 1.5rem;
    }

    .profiles-toolbar[b-m0t4y46w4a] {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .btn-add[b-m0t4y46w4a] {
        width: 100%;
    }

    .profiles-table[b-m0t4y46w4a] {
        font-size: 0.875rem;
    }

    .profiles-table th[b-m0t4y46w4a],
    .profiles-table td[b-m0t4y46w4a] {
        padding: 0.75rem 0.5rem;
    }

    .btn-action[b-m0t4y46w4a] {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    .modal-content[b-m0t4y46w4a] {
        width: 95%;
    }
}
/* /Components/Pages/Register.razor.rz.scp.css */
.register-container[b-wkxtmnfvgq] {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem 0;
}

.register-card[b-wkxtmnfvgq] {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border: none;
}

.register-card .card-header[b-wkxtmnfvgq] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    border: none;
    text-align: center;
}

.register-card .card-header h3[b-wkxtmnfvgq] {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.register-card .card-body[b-wkxtmnfvgq] {
    padding: 2.5rem;
}

.form-label[b-wkxtmnfvgq] {
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control[b-wkxtmnfvgq] {
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus[b-wkxtmnfvgq] {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    outline: none;
}

.btn-register[b-wkxtmnfvgq] {
    width: 100%;
    padding: 0.875rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1rem;
}

.btn-register:hover:not(:disabled)[b-wkxtmnfvgq] {
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(102, 126, 234, 0.4);
}

.btn-register:active:not(:disabled)[b-wkxtmnfvgq] {
    transform: translateY(0);
}

.btn-register:disabled[b-wkxtmnfvgq] {
    opacity: 0.7;
    cursor: not-allowed;
}

.alert[b-wkxtmnfvgq] {
    border-radius: 8px;
    border: none;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.alert-danger[b-wkxtmnfvgq] {
    background-color: #fee;
    color: #c53030;
}

.alert-success[b-wkxtmnfvgq] {
    background-color: #f0fdf4;
    color: #166534;
}

.callsign-warning[b-wkxtmnfvgq] {
    margin-top: 0.5rem;
    padding: 0.75rem;
    background-color: #fffbeb;
    border-left: 4px solid #f59e0b;
    border-radius: 4px;
    color: #92400e;
    font-size: 0.9rem;
    font-weight: 500;
    animation: slideIn-b-wkxtmnfvgq 0.3s ease-out;
}

@keyframes slideIn-b-wkxtmnfvgq {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mb-3[b-wkxtmnfvgq] {
    margin-bottom: 1.5rem !important;
}

.login-link[b-wkxtmnfvgq] {
    color: #4a5568;
    font-size: 0.9rem;
    margin: 0;
}

.login-link a[b-wkxtmnfvgq] {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.login-link a:hover[b-wkxtmnfvgq] {
    color: #764ba2;
    text-decoration: underline;
}

[b-wkxtmnfvgq] .validation-message {
    color: #c53030;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}
/* /Components/Pages/Settings.razor.rz.scp.css */
.settings-container[b-oh6uhkhwbs] {
    min-height: 100vh;
    padding: 2rem 0;
}

.settings-container.theme-purple[b-oh6uhkhwbs] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.settings-container.theme-blue[b-oh6uhkhwbs] {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.settings-container.theme-green[b-oh6uhkhwbs] {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%);
}

.settings-header[b-oh6uhkhwbs] {
    background: white;
    border-radius: 15px 15px 0 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
    box-sizing: border-box;
}

.logo-section[b-oh6uhkhwbs] {
    display: flex;
    align-items: center;
}

.logo-section img[b-oh6uhkhwbs] {
    max-height: 60px;
    width: auto;
}

.header-buttons[b-oh6uhkhwbs] {
    display: flex;
    gap: 1rem;
}

.btn-settings[b-oh6uhkhwbs] {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-settings:hover[b-oh6uhkhwbs] {
    transform: translateY(-2px);
}

.btn-settings:active[b-oh6uhkhwbs] {
    transform: translateY(0);
}

.settings-content[b-oh6uhkhwbs] {
    background: white;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 90%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

.settings-layout[b-oh6uhkhwbs] {
    display: flex;
    min-height: 500px;
}

.vertical-tabs[b-oh6uhkhwbs] {
    width: 250px;
    border-right: 2px solid #e2e8f0;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
}

.vertical-tab[b-oh6uhkhwbs] {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    background: transparent;
    color: #718096;
    cursor: pointer;
    text-align: left;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

.vertical-tab:hover[b-oh6uhkhwbs] {
    background-color: #f7fafc;
}

.vertical-tab.active[b-oh6uhkhwbs] {
    color: #667eea;
    background-color: #f0f4ff;
    border-left-color: #667eea;
}

.settings-panel[b-oh6uhkhwbs] {
    flex: 1;
    padding: 2rem 3rem;
}

.panel-content h2[b-oh6uhkhwbs] {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.panel-content p[b-oh6uhkhwbs] {
    color: #718096;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.theme-options[b-oh6uhkhwbs] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.theme-card[b-oh6uhkhwbs] {
    border: 3px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.theme-card:hover[b-oh6uhkhwbs] {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.theme-card.selected[b-oh6uhkhwbs] {
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
}

.theme-preview[b-oh6uhkhwbs] {
    width: 100%;
    height: 120px;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.theme-name[b-oh6uhkhwbs] {
    text-align: center;
    font-weight: 600;
    color: #2d3748;
    font-size: 1.1rem;
}

.theme-check[b-oh6uhkhwbs] {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #4299e1;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.horizontal-tabs[b-oh6uhkhwbs] {
    display: flex;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 2rem;
    gap: 0.5rem;
}

.horizontal-tab[b-oh6uhkhwbs] {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    background: transparent;
    color: #718096;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    margin-bottom: -2px;
}

.horizontal-tab:hover:not(:disabled)[b-oh6uhkhwbs] {
    color: #667eea;
}

.horizontal-tab.active[b-oh6uhkhwbs] {
    color: #667eea;
    border-bottom-color: #667eea;
}

.horizontal-tab:disabled[b-oh6uhkhwbs] {
    color: #cbd5e0;
    cursor: not-allowed;
    opacity: 0.5;
}

.weblog-content[b-oh6uhkhwbs] {
    padding: 1rem 0;
}

.qrz-settings[b-oh6uhkhwbs] {
    max-width: 600px;
}

.form-group[b-oh6uhkhwbs] {
    margin-bottom: 1.5rem;
}

.form-group label[b-oh6uhkhwbs] {
    display: block;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control[b-oh6uhkhwbs] {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-control:focus[b-oh6uhkhwbs] {
    outline: none;
}

.form-group-checkbox[b-oh6uhkhwbs] {
    margin-bottom: 1.5rem;
}

.checkbox-label[b-oh6uhkhwbs] {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: #4a5568;
}

.checkbox-label input[type="checkbox"][b-oh6uhkhwbs] {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    cursor: pointer;
}

.checkbox-label span[b-oh6uhkhwbs] {
    font-size: 1rem;
}

.btn[b-oh6uhkhwbs] {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary[b-oh6uhkhwbs] {
    color: white;
}

.btn-primary:hover[b-oh6uhkhwbs] {
    transform: translateY(-2px);
}

.alert[b-oh6uhkhwbs] {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.alert-success[b-oh6uhkhwbs] {
    background-color: #f0fdf4;
    color: #166534;
    border-left: 4px solid #10b981;
}

.mt-3[b-oh6uhkhwbs] {
    margin-top: 1rem;
}

.friends-toolbar[b-oh6uhkhwbs] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.friends-toolbar h2[b-oh6uhkhwbs] {
    color: #2d3748;
    margin: 0;
}

.activities-toolbar[b-oh6uhkhwbs] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.activities-toolbar h2[b-oh6uhkhwbs] {
    color: #2d3748;
    margin: 0;
}

.activities-table[b-oh6uhkhwbs] {
    width: 100%;
    border-collapse: collapse;
}

.activities-table thead[b-oh6uhkhwbs] {
    background-color: #f7fafc;
}

.activities-table th[b-oh6uhkhwbs] {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #2d3748;
    border-bottom: 2px solid #e2e8f0;
}

.activities-table td[b-oh6uhkhwbs] {
    padding: 1rem;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
}

.activities-table tbody tr:hover[b-oh6uhkhwbs] {
    background-color: #f7fafc;
}

.btn-add[b-oh6uhkhwbs] {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add:hover[b-oh6uhkhwbs] {
    transform: translateY(-2px);
}

.no-data[b-oh6uhkhwbs] {
    color: #718096;
    text-align: center;
    padding: 3rem;
    font-size: 1.1rem;
}

.friends-table[b-oh6uhkhwbs] {
    width: 100%;
    border-collapse: collapse;
}

.friends-table thead[b-oh6uhkhwbs] {
    background-color: #f7fafc;
}

.friends-table th[b-oh6uhkhwbs] {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: #2d3748;
    border-bottom: 2px solid #e2e8f0;
}

.friends-table td[b-oh6uhkhwbs] {
    padding: 1rem;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
}

.friends-table tbody tr:hover[b-oh6uhkhwbs] {
    background-color: #f7fafc;
}

.btn-action[b-oh6uhkhwbs] {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-right: 0.5rem;
}

.btn-edit[b-oh6uhkhwbs] {
    background-color: #4299e1;
    color: white;
}

.btn-edit:hover[b-oh6uhkhwbs] {
    background-color: #3182ce;
}

.btn-delete[b-oh6uhkhwbs] {
    background-color: #f56565;
    color: white;
}

.btn-delete:hover[b-oh6uhkhwbs] {
    background-color: #e53e3e;
}

.modal-overlay[b-oh6uhkhwbs] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content[b-oh6uhkhwbs] {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header[b-oh6uhkhwbs] {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3[b-oh6uhkhwbs] {
    margin: 0;
    color: #2d3748;
}

.btn-close[b-oh6uhkhwbs] {
    background: none;
    border: none;
    font-size: 2rem;
    color: #718096;
    cursor: pointer;
    line-height: 1;
    padding: 0;
}

.btn-close:hover[b-oh6uhkhwbs] {
    color: #2d3748;
}

.modal-body[b-oh6uhkhwbs] {
    padding: 2rem;
}

.modal-footer[b-oh6uhkhwbs] {
    padding: 1.5rem 2rem;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.btn-secondary[b-oh6uhkhwbs] {
    background-color: #e2e8f0;
    color: #4a5568;
}

.btn-secondary:hover[b-oh6uhkhwbs] {
    background-color: #cbd5e0;
}

.btn-danger[b-oh6uhkhwbs] {
    background-color: #f56565;
    color: white;
}

.btn-danger:hover[b-oh6uhkhwbs] {
    background-color: #e53e3e;
}

.alert-danger[b-oh6uhkhwbs] {
    background-color: #fee;
    color: #c53030;
}

.pota-info[b-oh6uhkhwbs] {
    margin-bottom: 2rem;
}

.info-card[b-oh6uhkhwbs] {
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    max-width: 300px;
}

.info-label[b-oh6uhkhwbs] {
    font-size: 0.875rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-value[b-oh6uhkhwbs] {
    font-size: 3rem;
    font-weight: bold;
    color: #2d3748;
}

.pota-actions[b-oh6uhkhwbs] {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.progress-info[b-oh6uhkhwbs] {
    background: #fff5e6;
    border-left: 4px solid #f59e0b;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1.5rem;
}

.progress-info p[b-oh6uhkhwbs] {
    color: #92400e;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .settings-header[b-oh6uhkhwbs] {
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
        width: 95%;
    }

    .logo-section[b-oh6uhkhwbs] {
        justify-content: center;
    }

    .header-buttons[b-oh6uhkhwbs] {
        flex-direction: column;
    }

    .btn-settings[b-oh6uhkhwbs] {
        width: 100%;
    }

    .settings-content[b-oh6uhkhwbs] {
        width: 95%;
    }

    .settings-layout[b-oh6uhkhwbs] {
        flex-direction: column;
    }

    .vertical-tabs[b-oh6uhkhwbs] {
        width: 100%;
        border-right: none;
        border-bottom: 2px solid #e2e8f0;
        padding: 1rem 0;
    }

    .vertical-tab[b-oh6uhkhwbs] {
        padding: 0.75rem 1.5rem;
        border-left: none;
        border-bottom: 3px solid transparent;
    }

    .vertical-tab.active[b-oh6uhkhwbs] {
        border-left-color: transparent;
        border-bottom-color: #667eea;
    }

    .settings-panel[b-oh6uhkhwbs] {
        padding: 1.5rem;
    }

    .theme-options[b-oh6uhkhwbs] {
        grid-template-columns: 1fr;
    }

    .horizontal-tabs[b-oh6uhkhwbs] {
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .horizontal-tab[b-oh6uhkhwbs] {
        white-space: nowrap;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .friends-toolbar[b-oh6uhkhwbs] {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .btn-add[b-oh6uhkhwbs] {
        width: 100%;
    }

    .friends-table[b-oh6uhkhwbs] {
        font-size: 0.875rem;
    }

    .friends-table th[b-oh6uhkhwbs],
    .friends-table td[b-oh6uhkhwbs] {
        padding: 0.75rem 0.5rem;
    }

    .btn-action[b-oh6uhkhwbs] {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }

    .modal-content[b-oh6uhkhwbs] {
        width: 95%;
    }

    .pota-actions[b-oh6uhkhwbs] {
        flex-direction: column;
    }

    .pota-actions button[b-oh6uhkhwbs] {
        width: 100%;
    }

    .info-card[b-oh6uhkhwbs] {
        max-width: 100%;
    }
}
