﻿.activity-list {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

}

.activity-item {
    display: flex;
    flex-direction: row;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    background-color: #f9f9f9;
    min-width: 300px;
    flex: 1 1 calc(33.333% - 20px); /* 3 per row with gap */
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .activity-list {
        display: flex;
        flex-direction: column;
    }

    .activity-item {
        flex: 1 1 100%;
        min-width: 100%;
    }
}

.activity-date {
    min-width: 120px;
    max-width: 100px;
    margin-right: 15px;
    padding: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.activity-name {
    font-weight: bold;
}

.activity-time, .activity-day {
    font-style: italic;
}

.activity-details{
    font-size: 1.1em;
}

.activity-dateDay{
    font-size: 3em;
}

.text-shadow {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.btn-light {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #ccc;
    transition: background-color 0.2s ease;
}

.btn-light:hover {
    background-color: #f0f0f0;
}

