/* Topic separator tool styles (Plan 078) */
/* Extracted from tools/topic_separator.pt */

.topic-title.title-normal {
    font-size: 3rem;
}

.topic-title.title-small {
    font-size: 2rem;
}

.topic-title.title-tiny {
    font-size: 1.5rem;
}

/* Position content near top with 100px spacing */
.topic-separator-section {
    padding-top: 100px;
}

/* Plan 068: Mark as Asked button */
.mark-state {
    display: none;  /* All states hidden by default; JS shows the active one */
}

#mark-asked-container {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

#mark-asked-container .button.is-success {
    cursor: default;
}

/* Pulse animation for "interview became active" transition */
@keyframes mark-pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(72, 95, 199, 0.5); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(72, 95, 199, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(72, 95, 199, 0); }
}

.mark-pulse {
    animation: mark-pulse 0.6s ease-in-out;
}
