﻿.notice-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notice-slider {
    overflow: hidden;
    height: 220px; /* height of one notice card */
    position: relative;
}

.notice-card {
    transition: transform 0.5s ease-in-out;
}

/* Buttons */
.nav-btn {
    background: #0b3c88;
    color: #fff;
    border: none;
    font-size: 28px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
}

    .nav-btn:hover {
        background: #062c66;
    }
