/* MedicPlexus Community Styles */
.mp-community-container {
    padding: 20px 0;
}

.mp-community-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.mp-community-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.mp-topic-card {
    transition: 0.3s;
    border: 1px solid #eee !important;
    border-radius: 12px !important;
}

.mp-topic-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.1);
    border-color: #6c5ce7 !important;
}

.mp-topic-title a {
    color: #2d3436;
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s;
}

.mp-topic-title a:hover {
    color: #6c5ce7;
}

.mp-author {
    font-weight: 600;
    color: #6c5ce7;
    font-size: 14px;
}

.mp-date {
    color: #b2bec3;
    font-size: 13px;
}

.mp-replies-count {
    color: #636e72;
    font-size: 13px;
    font-weight: 600;
}

#mp-topic-form-wrap {
    background: #f9f9fc;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eee;
}

/* Modal/Dropdown styles for notifications if needed later */