/* Admin Side Design */
.notice-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.notice-header input {
    padding: 0 8px;
    line-height: 2;
    min-height: 30px;
}

.addnoticeform {
    width: 30%;
    margin-top: 15px;
}

.addnoticeform input {
    width: 100%;
}

.addnoticeform label {
    margin-bottom: 3px;
    display: block;
}

.addnoticeform textarea {
    width: 100%;
}

.addnoticeform .addnoticebtn {
    width: auto;
}

.addnoticeform .updatenoticebtn {
    width: auto;
}

/* Slider Design */
.owl-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    font-family: "Open Sans", Sans-serif;
}

.owl-stage-outer {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.owl-stage {
    position: relative;
    display: flex;
    transition: transform 0.6s ease;
    width: 100%;
}

.owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    backface-visibility: hidden;
    flex-shrink: 0;
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.owl-item:last-child {
    margin-right: 0;
}

.home-demo .item {
    transition: transform 0.3s ease;
    padding: 0 10px 0 20px;
    border-left: 1px solid #C9C9C9;
    margin: 15px 0;
    overflow: hidden;
}

/* Loading Animation */
.owl-carousel.loading {
    opacity: 0;
    animation: fadeIn 0.5s ease-in-out 0.2s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider Inner Design */
.nb-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nb-myt {
    display: flex;
    align-items: center;
    gap: 5px;
    min-width:max-content;
}

.nb-day {
    width: 32px;
    height: 32px;
    background-color: #FFC300;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 16px;
}

.nb-month {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

.nb-year {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
}

.nb-title {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nb-notice-body p {
    line-height: 20px;
    font-size: 12px;
    font-weight: 600;
    margin: 0;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 6px;
}

.nb-notice-body a {
    color: #FFC300;
    text-decoration: none;
    font-weight: 600;
}

.nb-notice-body a:hover {
    text-decoration: underline;
}