/* UTJD Meeting Manager - Frontend Styles */

/* Meeting List Container */
.utjd-meeting-list {
    margin: 20px 0;
}

/* Meeting Type Groups */
.utjd-meeting-type-group {
    margin-bottom: 40px;
}

.utjd-meeting-type-group:last-child {
    margin-bottom: 0;
}

.utjd-meeting-type-heading {
    font-size: 24px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0073aa;
    color: #333;
}

/* Meeting Items */
.utjd-meeting-items {
    list-style: none;
    margin: 0;
    padding: 0;
}

.utjd-meeting-item {
    padding: 15px;
    margin-bottom: 10px;
    background: #f9f9f9;
    border-left: 4px solid #0073aa;
    transition: all 0.3s ease;
}

.utjd-meeting-item:hover {
    background: #f5f5f5;
    border-left-color: #005177;
}

.utjd-meeting-item.utjd-meeting-weekly {
    border-left-color: #00a32a;
}

.utjd-meeting-item.utjd-meeting-biweekly {
    border-left-color: #0073aa;
}

.utjd-meeting-item.utjd-meeting-monthly {
    border-left-color: #d63638;
}

.utjd-meeting-item.utjd-meeting-other {
    border-left-color: #996600;
}

.utjd-meeting-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
}

.utjd-meeting-title a {
    color: #333;
    text-decoration: none;
}

.utjd-meeting-title a:hover {
    color: #0073aa;
}

.utjd-meeting-meta {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.utjd-meeting-meta span {
    margin-right: 15px;
}

.utjd-meeting-meta .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 5px;
}

.utjd-meeting-excerpt {
    color: #555;
    line-height: 1.6;
    margin: 10px 0;
}

.utjd-meeting-actions {
    margin-top: 10px;
}

.utjd-meeting-actions a {
    display: inline-block;
    padding: 5px 12px;
    margin-right: 8px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    font-size: 13px;
    transition: background 0.3s ease;
}

.utjd-meeting-actions a:hover {
    background: #005177;
}

/* No Meetings Message */
.utjd-no-meetings {
    padding: 20px;
    text-align: center;
    background: #f5f5f5;
    border-radius: 4px;
    color: #666;
}

/* Filters */
.utjd-meeting-filters {
    margin-bottom: 20px;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 4px;
}

.utjd-meeting-filters select {
    padding: 8px;
    margin-right: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.utjd-meeting-filters button {
    padding: 8px 15px;
    background: #0073aa;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.utjd-meeting-filters button:hover {
    background: #005177;
}

/* Responsive */
@media (max-width: 768px) {
    .utjd-meeting-type-heading {
        font-size: 20px;
    }
    
    .utjd-meeting-title {
        font-size: 16px;
    }
    
    .utjd-meeting-meta {
        font-size: 13px;
    }
    
    .utjd-meeting-meta span {
        display: block;
        margin: 5px 0;
    }
    
    .utjd-meeting-actions a {
        display: block;
        margin: 5px 0;
        text-align: center;
    }
}
