body {
	padding-top: 80px;
}

.progress {
    display: flex;
    overflow: hidden;
    background-color: #e9ecef;
    border-radius: 20px;
    height: 20px;
    gap: 2px;
}

.progress-bar {
    transition: transform 0.2s ease;
}

.progress-bar:hover {
    transform: scale(1.08);
    z-index: 1;
}

.header-fixed {
	position: fixed;
	top: 0;
	width: 100%;
	background: #fff;
	z-index: 1000;
	box-shadow: 0 2px 5px rgba(0,0,0,.2);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 50px;
}
 .status-card {
     margin-bottom: 20px;
}
 footer {
     background: #f5f5f5;
     padding: 10px 0;
     text-align: center;
}
 .progress-bar-animated {
     animation: progress-bar-stripes 1s linear infinite;
}
 .footer-margin {
     margin-bottom: 150px;
}
 footer a {
     text-decoration: none;
     color: #6c757d;
}
 footer a:hover {
     color: #0056b3;
     text-decoration: none;
}
 @media (max-width: 768px) {
     body {
         font-size: 14px;
		 padding-top: 110px;
    }
     h1 {
         font-size: 24px;
    }
     h2 {
         font-size: 20px;
    }
     .navbar-brand img, .footer img {
         max-height: 30px;
    }
     .status-card, .footer {
         padding: 10px;
    }
	.header-fixed {
		flex-direction: column;
		padding: 10px;
	}
	.header-fixed img {
		margin-bottom: 10px;
	}
	.header-fixed span {
		font-size: 14px;
	}
}
