﻿.match-details-container {
    max-height: 2000px;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 1;
}

    .match-details-container.collapsed {
        max-height: 0;
        opacity: 0;
    }

.rotate-180 {
    transform: rotate(-180deg);
}

.container {
    align-content: start;
}

/* Available Days Section */
.available-days-container-profile {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.day-item-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .day-item-profile svg {
        width: 32px;
        height: 32px;
    }

.day-label-profile {
    font-size: 1.125rem;
    margin-top: 0.25rem;
}

.day-available-profile {
    color: #16a34a;
    font-weight: 600;
}

.day-unavailable-profile {
    color: #9ca3af;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .available-days-container-profile {
        gap: 0.75rem;
    }

    .day-item-profile svg {
        width: 24px !important;
        height: 24px !important;
    }

    .day-label-profile {
        font-size: 0.75rem !important;
        margin-top: 0.125rem !important;
    }
}