/* Notice List */
.notice-list {
    list-style: none;
    padding-left: 0;
    font-family: 'SolaimanLipi', sans-serif;
    font-size: 1rem;
}

.notice-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}
.notice-list li i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.9rem;
}
.notice-list li a {
    color: #575b5e;
    text-decoration: none;
    border-bottom: 1px dotted #666;
    transition: 0.2s;
}
.notice-list li a:hover {
    color: #157347;
    border-bottom: 1px solid #666;
}

/* Scrollable notice list */
.notice-scroll {
    max-height: 180px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}
.notice-scroll::-webkit-scrollbar { width: 6px; }
.notice-scroll::-webkit-scrollbar-track { background: #f1f1f1; }
.notice-scroll::-webkit-scrollbar-thumb { background: #888; border-radius: 3px; }
.notice-scroll::-webkit-scrollbar-thumb:hover { background: #555; }

/* Bullhorn Logo */
.logo-inner {
    width: 80px;
    height: 80px;
    background-color: rgba(0,128,0,0.75);
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive */
@media (max-width: 991.98px) {
    .card-body.flex-lg-row { flex-direction: column !important; }
    .logo-container { display: none !important; } /* Mobile hide logo */
    .notice-list li { padding-left: 12px; } /* কম padding */
    .notice-list li i { font-size: 0.8rem; } /* ছোট আইকন */
    .notice-list li a { font-size: 0.9rem; }
    .btn-sm { font-size: 0.85rem; padding: 0.35rem 0.6rem; }
}