    .notice-wrapper {
        background: #fff;
        border-radius: 14px;
        padding: 20px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
        border-bottom: none !important;
    }


    .notice-tabs .nav-link {
        min-width: 140px;
        font-weight: 600;
        border-radius: 30px;
        padding: 10px 15px;
        border: none;
        color: #fff;
        background: linear-gradient(135deg, #0d6efd, #20c997);
        transition: all 0.3s ease;
        text-align: center;
        border-bottom: none !important;
    }

    /* Hover */
    .notice-tabs .nav-link:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        background: linear-gradient(135deg, #20c997, #0d6efd);
        color: #fff;
    }

    /* Active */
    .notice-tabs .nav-link.active {
        background: linear-gradient(135deg, #dc3545, #fd7e14);
        box-shadow: 0 6px 18px rgba(220, 53, 69, 0.4);
        color: #fff;
    }

    /* Mobile */
    @media (max-width: 576px) {
        .notice-tabs .nav-link {
            min-width: 110px;
            font-size: 14px;
        }
    }

    .notice-table th {
        background: #f1f5ff;
        font-weight: 700;
    }

    .notice-table tr:hover {
        background: #f9fbff;
    }

    .notice-action-btn {
        border-radius: 20px;
        padding: 4px 14px;
    }

    .notice-card {
        border: none;
        border-radius: 14px;
        background: linear-gradient(180deg, #f8fbff, #eaf2ff);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
        transition: all 0.25s ease;
        position: relative;
        overflow: hidden;
    }

    .notice-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 4px;
        width: 100%;
        background: linear-gradient(90deg, #0d6efd, #6ea8fe);
    }

    .notice-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    }

    .notice-card .card-header,
    .notice-card .card-footer {
        background: transparent;
        border: none;
    }

    .notice-tabs {
        border-bottom: none !important;
    }

    /* Each tab underline remove */
    .notice-tabs .nav-link {
        border: none !important;
    }

    /* Active tab underline remove */
    .notice-tabs .nav-link.active {
        border: none !important;
    }

    /* Bootstrap nav-tabs default after/before fix */
    .notice-tabs.nav-tabs {
        --bs-nav-tabs-border-width: 0;
    }


    .notice-card .card-body {
        font-size: 15px;
    }
