﻿.notice-board {
    background: #f5f5f5;
    padding: 80px 0;
}

    .notice-board .card {
        border: none;
        border-radius: 15px;
        overflow: hidden;
        background: #ffffff;
        box-shadow: 0 10px 25px rgba(0, 0, 0, .10);
    }

    .notice-board .card-header {
        background: #4b5563; /* Elegant gray */
        color: #ffffff;
        padding: 20px 30px;
    }

        .notice-board .card-header h2,
        .notice-board .card-header h4 {
            margin: 0;
            font-weight: 700;
        }

    .notice-board .card-body {
        padding: 30px;
        background: #ffffff;
    }

    .notice-board .list-group-item {
        border: none;
        border-bottom: 1px solid #e5e7eb;
        padding: 18px 10px;
        transition: all .3s ease;
        font-size: 1rem;
        color: #374151;
        background: #ffffff;
    }

        .notice-board .list-group-item:last-child {
            border-bottom: none;
        }

        .notice-board .list-group-item:hover {
            background: #f3f4f6;
            transform: translateX(8px);
        }

    .notice-board .notice-date {
        color: #9ca3af;
        font-size: .9rem;
        font-weight: 600;
    }


/*.notice-board {
    background: #f8f9fa;
}

    .notice-board .card {
        border-radius: 12px;
    }

    .notice-board .card-header {
        font-size: 22px;
        font-weight: bold;
    }

    .notice-board .card-body {
        font-size: 18px;
    }
*/