.noticeboard-module {
    font-family: "Segoe UI", Roboto, sans-serif;
    margin: 30px auto;
    max-width: 900px;
}

/* Heading */
.noticeboard-module h3 {
    font-size: 26px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    border-left: 5px solid #0073e6;
    padding-left: 10px;
}

/* Card style */
.notice-card {
    background: #fff;
    border: 1px solid #e1e5eb;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Header */
.notice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 18px;
    background: #f9fafc;
    cursor: pointer;
    transition: background 0.3s ease;
}

.notice-header:hover {
    background: #f1f5fb;
}

.notice-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

.notice-date {
    font-size: 14px;
    color: #6c757d;
}

/* Body */
.notice-body {
    padding: 0 18px 15px;
    display: block;
}

.notice-body.collapsed {
    display: none;
}

.notice-body p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

/* Read More button */
.readmore-btn {
    background: #0073e6;
    color: #fff;
    border: none;
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s ease;
}

.readmore-btn:hover {
    background: #005bb5;
}

/* Full text hidden initially */
.full-text.d-none {
    display: none;
}
