/* Fix for postcall tab visibility issues */

/* Hide all postcall tab content by default */
.postcall-tab-content {
    display: none !important;
}

/* Show only the active postcall tab */
.postcall-tab-content.active {
    display: flex !important;
}

/* Ensure highlights subtab content is hidden by default */
.highlights-subtab-content {
    display: none;
}

/* Show only active highlights subtab */
.highlights-subtab-content.active {
    display: flex;
}

/* Make sure the container doesn't interfere */
#postCallTabContentContainer {
    display: flex !important;
    flex-direction: column;
}

/* Profiler tab specific fixes */
#profilerTabPostCall {
    flex-direction: column;
}

/* Search tab specific fixes */
#searchTabPostCall {
    flex-direction: column;
}

/* Conversation tab specific fixes */
#conversationTabPostCall {
    flex-direction: column;
}