/* Expandable Content Styles */
.expandable-content {
    position: relative;
    max-height: 500px;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.expandable-content.expanded {
    max-height: 10000px; /* Large value to ensure all content is shown */
}

.expand-button-container {
    position: relative;
    text-align: center;
    margin-top: 10px;
}

.expand-button {
    display: inline-block;
    padding: 8px 20px;
    background-color: #3498db;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.expand-button:hover {
    background-color: #2980b9;
}

.expand-button i {
    margin-left: 5px;
}

.content-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.expandable-content.expanded .content-fade {
    opacity: 0;
}