/* Styles for the inline stage update form */

.inline-stage-update {
    display: none;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    padding: 1rem;
    margin-top: 0.5rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease-out;
}

.inline-stage-update.show {
    display: block;
    max-height: 400px; /* Adjust based on content height */
}

/* Highlight the selected candidate */
.candidate-item.active {
    background-color: rgba(0, 123, 255, 0.05);
    border-left: 3px solid #0d6efd;
}

/* Animation for slide down */
@keyframes slideDown {
    from { max-height: 0; }
    to { max-height: 400px; }
}

.inline-stage-update.animate-in {
    animation: slideDown 0.3s ease-out forwards;
}

/* Animation for slide up */
@keyframes slideUp {
    from { max-height: 400px; }
    to { max-height: 0; }
}

.inline-stage-update.animate-out {
    animation: slideUp 0.3s ease-in forwards;
}