*,body,h1,h2,h3,h4,h5,h6,p,span,a{
    font-family: "Poppins", serif;
}
body{
    font-size:15px;
}
.navbar-brand img{
    height:90px;
}
.carousel-item img{
    height:450px;
}
.main-content{
    min-height:78vh;
}
body .footer{
    position:relative;
    height:auto;
    line-height:normal;
    padding:10px 0;
}
.table td, .table th{
    padding:5px;
}
.table th{
    font-size:90%;
}
.table td{
    font-size:80%;
}
.notification .dropdown-toggle:after{
    display:none;
}
.dropdown-footer {
    border-top: 1px solid #ddd;
    padding: 5px;
    font-size: 14px;
}
.notification .dropdown-menu{
    left:auto;
    right:0;
}
.blinking-dot {
    position: absolute;
    top:-2px;
    right:-2px;
    width:6px;
    height:6px;
    background-color: red;
    border-radius: 50%;
    animation: blink-animation 1s infinite;
}

/* Blinking animation */
@keyframes blink-animation {
    0%, 50%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0;
    }
}
@media (max-width:768px){
    .navbar{
        padding:5px 1rem;
    }
    .navbar-brand img{
        height:60px;
    }
    .carousel-item img{
        height:120px;
    }
}