#srt-dashboard-root {
    --srt-accent: #39808D;
    --srt-brand-dark: #1a3c34;
    --srt-card-bg: #ffffff;
    --srt-text-main: #333333;
    --srt-text-muted: #666666;
    --srt-border: #e0e4e8;
    --srt-border-strong: #cbd5e1;
    font-family: 'Inter', sans-serif;
    color: var(--srt-text-main);
    padding: 0 !important; 
    margin: 0 !important;
    -webkit-font-smoothing: antialiased;
}

.srt-container {
    max-width: 1400px;
    margin: 0 auto;
}

#srt-dashboard-root p, #srt-dashboard-root h1, #srt-dashboard-root h2, 
#srt-dashboard-root h3, #srt-dashboard-root h4, #srt-dashboard-root h5,
#srt-dashboard-root ul, #srt-dashboard-root li {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

#srt-dashboard-root .srt-card {
    background: var(--srt-card-bg) !important;
    border: 1px solid var(--srt-border) !important;
    transition: all 0.2s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

#srt-dashboard-root .srt-card:hover {
    transform: translateY(-2px);
    border-color: var(--srt-accent) !important;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

#srt-dashboard-root .srt-circle-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--srt-border);
    flex-shrink: 0;
}

#srt-dashboard-root .comment-bullet {
    position: relative;
    padding-left: 1.2rem !important;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px !important;
}

#srt-dashboard-root .comment-bullet::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55rem;
    width: 5px;
    height: 5px;
    background: var(--srt-accent);
    border-radius: 1px;
    opacity: .6;
}

#srt-dashboard-root .section-header {
    font-size: 14px;
    font-weight: 600;
    color: var(--srt-text-muted);
    text-transform: uppercase;
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 15px !important;
}

#srt-dashboard-root .section-header::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--srt-border);
}

#srt-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 999999;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

#srt-modal-content {
    background: white;
    width: 100%;
    max-width: 820px;
    max-height: 90vh;
    border-radius: 12px;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

#srt-dashboard-root .srt-btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f5f7fa;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    z-index: 100;
}

#srt-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
}

.srt-spinner {
    width: 24px;
    height: 24px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid var(--srt-accent);
    border-radius: 50%;
    animation: srtSpin 1s linear infinite;
}

@keyframes srtSpin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }