/**
 * Public styles for the Teocallis Association Reports plugin
 */

.teocallis-reports-shortcode {
    margin: 20px 0;
}

.teocallis-reports-shortcode .report-type-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid #e5e5e5;
}

.teocallis-reports-shortcode .reports-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.teocallis-reports-shortcode .report-item {
    margin-bottom: 10px;
    padding: 10px;
    background: #f9f9f9;
    border: 1px solid #e5e5e5;
    transition: background-color 0.2s ease;
}

.teocallis-reports-shortcode .report-item:hover {
    background-color: #f0f0f0;
}

.teocallis-reports-shortcode .report-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.teocallis-reports-shortcode .report-name {
    font-weight: bold;
}

.teocallis-reports-shortcode .report-date {
    color: #666;
    font-size: 0.9em;
}

/* Responsive Styles */
@media screen and (max-width: 600px) {
    .teocallis-reports-shortcode .report-link {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .teocallis-reports-shortcode .report-date {
        margin-top: 5px;
    }
}