.nbf-board-container {
    max-width: 450px;
    margin: 20px auto;
    font-family: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 20px 40px -8px rgba(30, 58, 138, 0.1),
                0 2px 12px -4px rgba(30, 58, 138, 0.05),
                0 0 0 1px rgba(30, 58, 138, 0.02);
    overflow: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nbf-board-container:hover {
    transform: translateY(-2px) translateZ(0);
    box-shadow: 0 24px 48px -8px rgba(30, 58, 138, 0.15),
                0 2px 12px -4px rgba(30, 58, 138, 0.08),
                0 0 0 1px rgba(30, 58, 138, 0.02);
}

.nbf-header {
    background: linear-gradient(135deg, #E6780B 0%, #E6780B 100%);
    padding: 16px 20px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}

.nbf-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, 
                rgba(255, 255, 255, 0.12), 
                transparent 60%);
    pointer-events: none;
}

.nbf-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.nbf-title::before {
    content: "📢";
    font-size: 16px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nbf-nav-buttons {
    display: flex;
    gap: 4px;
    position: relative;
    z-index: 1;
}

.nbf-nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 6px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    transition: all 0.2s ease;
}

.nbf-nav-btn:not(:disabled):hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.nbf-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.nbf-list {
    height: 370px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.nbf-wrapper {
    height: 100%;
    position: relative;
}

.nbf-page {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.nbf-item {
    display: flex;
    align-items: flex-start;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(30, 58, 138, 0.08);
    height: 74px;
    box-sizing: border-box;
    background: #ffffff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nbf-item.show {
    opacity: 1;
    transform: translateY(0);
}

.nbf-item:hover {
    background: linear-gradient(to right, rgba(30, 58, 138, 0.03), rgba(30, 58, 138, 0.05));
}

.nbf-date-box {
    background: #E6780B;
    color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-right: 14px;
    box-shadow: 0 6px 12px -2px rgba(30, 58, 138, 0.2);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.nbf-item:hover .nbf-date-box {
    transform: scale(1.05);
}

.nbf-date-box .month {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.9;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    text-align: center;
    padding: 2px 0;
}

.nbf-date-box .day {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    padding-top: 2px;
}

.nbf-content {
    flex: 1;
    min-width: 0;
    padding-right: 50px;
    position: relative;
}

.nbf-text {
    color: #1e293b;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 4px;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    display: box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    max-height: 3em;
}

.nbf-text a {
    color: #1e293b;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nbf-text a:hover,
.nbf-text a:active {
    color: #1e3a8a;
    text-decoration: underline;
}

.nbf-date {
    color: #64748b;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
}

.nbf-new {
    position: relative;
}

.nbf-new::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 18px;
    background: url('/wp-content/plugins/notice-board-pro/assets/frontend/images/new_red.gif') no-repeat;
    background-size: contain;
    background-position: center;
}

.nbf-empty {
    height: 370px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px;
    background: linear-gradient(180deg, 
        rgba(30, 58, 138, 0) 0%,
        rgba(30, 58, 138, 0.03) 100%);
    color: #64748b;
}

.nbf-empty::before {
    content: '📋';
    font-size: 42px;
    margin-bottom: 16px;
    opacity: 0.8;
}

.nbf-empty::after {
    content: 'Check back later for updates';
    display: block;
    font-size: 13px;
    color: #94a3b8;
    margin-top: 8px;
}

@media (max-width: 480px) {
    .nbf-board-container {
        margin: 12px;
        border-radius: 12px;
    }

    .nbf-header {
        padding: 14px 16px;
    }

    .nbf-title {
        font-size: 13px;
    }

    .nbf-nav-btn {
        padding: 5px 8px;
    }

    .nbf-item {
        padding: 12px 16px;
        height: 70px;
    }

    .nbf-date-box {
        width: 42px;
        height: 42px;
        margin-right: 12px;
    }

    .nbf-date-box .month {
        font-size: 10px;
    }

    .nbf-date-box .day {
        font-size: 15px;
    }

    .nbf-text {
        font-size: 12px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        max-height: 3em;
        padding-right: 40px;
    }
    
    .nbf-content {
        padding-right: 40px;
    }

    .nbf-date {
        font-size: 10px;
    }

    .nbf-new::after {
        width: 40px;
        height: 16px;
        right: 12px;
    }
}
/*
     FILE ARCHIVED ON 19:15:17 Feb 02, 2025 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 11:44:36 May 14, 2026.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 0.537
  exclusion.robots: 0.058
  exclusion.robots.policy: 0.049
  esindex: 0.009
  cdx.remote: 20.509
  LoadShardBlock: 123.6 (3)
  PetaboxLoader3.datanode: 74.448 (4)
  PetaboxLoader3.resolve: 106.569 (3)
  load_resource: 96.067
*/