.lcams-frontend-wrap {
    margin: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.lcams-frontend-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e2937;
    margin-bottom: 20px;
    border-bottom: 3px solid #4f46e5;
    display: inline-block;
    padding-bottom: 5px;
}

.lcams-activity-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lcams-activity-card {
    display: flex;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.lcams-activity-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.lcams-activity-date {
    background: #4f46e5;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    min-width: 60px;
}

.lcams-date-day {
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
}

.lcams-date-month {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 2px;
}

.lcams-activity-info {
    padding: 12px 18px;
    flex-grow: 1;
}

.lcams-activity-name {
    margin: 0 0 5px 0 !important;
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

.lcams-activity-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6b7280;
    font-size: 13px;
    margin-bottom: 0;
}

.lcams-activity-meta .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: #4f46e5;
}

.lcams-no-activities {
    color: #6b7280;
    font-style: italic;
    background: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px dashed #d1d5db;
}

@media (max-width: 600px) {
    .lcams-activity-card {
        flex-direction: column;
    }
    .lcams-activity-date {
        flex-direction: row;
        gap: 10px;
        padding: 10px;
    }
    .lcams-date-day {
        font-size: 20px;
    }
}
