.clickable {
    cursor: pointer;
}

#loader {
    text-align: center;
}

#mcuTable {
    text-align: left;
}

.main {
    font-size: 18px;
    font-width: bold;
}

.mainCategory {
    font-size: 16px;
    font-width: bold;
}

.secondLoader {
    right: 0;
    position: absolute;
}

.stringifiedText {
    font-size: 14px;
    font-weight: bold;
    font-style: italic;
    color: #004ea8;
}

.findReadOnly {
    background: #ccc;
}

.stringifiedTitle {
    font-size: 14px;
    font-weight: bold;
    font-style: italic;
    color: #7400a8;
    text-decoration: underline;
}


/** CSS used when API data is retrieved **/
.mcu_title {
    font-weight: bold;
    font-size: 18px;
    display: block;
}

.mcu_premiere {
    font-style: italic;
    margin-bottom: 10px;
    font-size: 15px;
    color: #001059;
    font-weight: bold;
    padding: 5px;
    border: 1px solid black;
}

.mcu_description {
    font-style: italic;
    color: #017719;
    margin-bottom: 10px;
    font-size: 15px;
    width: 600px;
}

.seasonData {
    font-style: italic !important;
    font-size: 12px;
    margin-right: 5px !important;
}

.distribution {
    font-size: 12px;
}

.phase {
    font-size: 12px;
    margin-right: 5px;
}

.cardBadges {
    right: 10px;
    font-size: 12px !important;
    position: absolute;
}

.linkArray {
    margin-top: 5px;
    border: 1px dotted gray;
    padding: 5px;
}

/* Episode item expandable styles */
.episode-item {
    position: relative;
    transition: all 0.2s ease;
}

.episode-item:hover {
    background: #f0f0f0 !important;
    border-left-color: #007bff !important;
}

.episode-item.expanded {
    background: #e8f4f8 !important;
    border-left-color: #007bff !important;
}

.episode-item.expanded .episode-details {
    display: block !important;
    animation: slideDown 0.2s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
