.agenda-container {
    font-family: Arial, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.agenda-title {
    text-align: center;
    color: #333;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.agenda-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.agenda-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: box-shadow 0.3s ease;
}

.agenda-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.item-details {
    flex: 1;
    min-width: 150px;
    border-right: 1px solid #eee;
    padding-right: 15px;
}

.item-location {
    flex: 2;
    padding-left: 15px;
}

.detail-group {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    color: #555;
}

.icon {
    font-size: 1.2em;
    margin-right: 10px;
    color: #007bff; /* Een blauwe kleur voor de iconen */
}

.clothing-info {
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.clothing-logo {
    width: 25px;
    height: 25px;
    margin-right: 8px;
}

.location-name {
    font-size: 1.1em;
    color: #2c3e50;
}

.event-type,
.address {
    margin: 5px 0 0 0;
    color: #777;
    font-size: 0.9em;
}