.meeting-card {
    transition: transform 0.2s;
}

.meeting-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.meeting-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.meeting-info {
    font-size: 0.9rem;
    color: #666;
}

.meeting-status {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: white;
}

.status-active {
    background-color: #28a745;
}

.status-full {
    background-color: #dc3545;
}

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/static/img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    margin-bottom: 40px;
}

.category-badge {
    background-color: #f8f9fa;
    color: #495057;
    padding: 5px 15px;
    border-radius: 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    display: inline-block;
}

.meeting-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #6c757d;
    margin: 10px 0;
}

.meeting-meta i {
    margin-right: 5px;
}
