/* General List Styles */
.hadirilmu-item {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    gap: 20px;
    background: #fff;
    border-radius: 4px;
}

.hadirilmu-image {
    flex: 0 0 150px;
}

.hadirilmu-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.hadirilmu-image .no-image {
    width: 150px;
    height: 100px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    border-radius: 4px;
}

.hadirilmu-content h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.hadirilmu-content p {
    margin: 5px 0;
    color: #555;
}

/* Calendar Styles */
.hadirilmu-calendar {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f5f5f5;
    border-bottom: 1px solid #ddd;
}

.calendar-header h3 {
    margin: 0;
}

.nav-btn {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.day-name {
    padding: 10px;
    text-align: center;
    background: #fafafa;
    font-weight: bold;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
}

.calendar-day {
    min-height: 80px;
    padding: 5px;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    position: relative;
}

.calendar-day.empty {
    background: #fcfcfc;
}

.day-number {
    font-size: 12px;
    color: #999;
    display: block;
    margin-bottom: 5px;
}

.day-events {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.event-dot {
    display: block;
    width: 8px;
    height: 8px;
    background: #0073aa;
    border-radius: 50%;
}

.event-dot:hover {
    background: #005177;
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .hadirilmu-item {
        flex-direction: column;
    }
    .hadirilmu-image {
        flex: 0 0 auto;
        width: 100%;
    }
    .hadirilmu-image .no-image {
        width: 100%;
    }
}
