.ts-4c403daa-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: #fff;
    width: 100%;
    max-width: 500px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.ts-4c403daa-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    animation: ts-4c403daa-shine 6s infinite;
    pointer-events: none;
}

@keyframes ts-4c403daa-shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.ts-4c403daa-centers-wrapper {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.ts-4c403daa-centers-wrapper::-webkit-scrollbar {
    height: 4px;
}
.ts-4c403daa-centers-wrapper::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 4px;
}

.ts-4c403daa-center-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.ts-4c403daa-center-btn.active, .ts-4c403daa-center-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
}

.ts-4c403daa-sessions-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 100px;
}

.ts-4c403daa-session-item {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.ts-4c403daa-session-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.ts-4c403daa-session-item.hidden {
    display: none;
}

.ts-4c403daa-session-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ts-4c403daa-session-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.ts-4c403daa-session-date {
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 500;
}

.ts-4c403daa-session-desc {
    margin: 8px 0 0 0;
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

.ts-4c403daa-no-sessions {
    text-align: center;
    padding: 20px;
    font-style: italic;
    opacity: 0.7;
}

.ts-4c403daa-footer {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.ts-4c403daa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: 100%;
}

.ts-4c403daa-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}