#response-container {
    margin-top: 20px;
}

.card-header {
    background-color: #478dcb;
    color: white;
}

.card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 3px;
}

.form-inline {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.form-control {
    border-radius: 0px;
    transition: border-color 0.3s ease-in-out;
}

.form-control:focus {
    border-color: #478dcb;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.btn-primary {
    border-radius: 0px;
    transition: background-color 0.3s ease-in-out;
}

.btn-primary:hover {
    background-color: #478dcb;
}

h1 {
    color: #478dcb;
    animation: fadeInDown 1s;
    text-align: center;
    margin-bottom: 20px;
}

.progress-container {
    position: relative;
    margin-bottom: 20px;
    top: 5px;
}

.progress {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 10px;
    background-color: #cccccc;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
}

.progress-bar {
    background-color: #478dcb;
    border-radius: 4px; 
    transition: 0.4s linear;  
    transition-property: width, background-color; 
    border-radius: 10px;
}

.status-icon {
    position: relative;
    top: -5px;
    font-size: 25px;
    display: flex;
    transition: color 1s ease-in-out;
}

.status-label {
    position: relative;
    top: -15px;
    font-size: 14px;
    white-space: nowrap;
    display: flex;
    transition: color 1s ease-in-out;
}

.icon-complete {
    color: #f8bf00;
}

.icon-pending {
    color: lightgray;
}

.timeline {
    position: relative;
    padding: 0;
    list-style: none;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #b0d3f2;
    left: 4%;
    margin-left: 0px;
}

.timeline-item {
    position: relative;
    margin: 0 0 20px 0;
    padding: 0 20px;
    clear: both;
}

.timeline-item:before, .timeline-item:after {
    content: " ";
    display: table;
}

.timeline-item:after {
    clear: both;
}

.timeline-item .timeline-icon {
    position: absolute;
    top: 6px;
    left: 4.2%;
    margin-left: -15px;
    background: #fff;
    border: 2px solid #478dcb;
    width: 30px;
    height: 30px;
    text-align: center;
    /* line-height: 30px; */
    border-radius: 50%;
    padding: 6px 0 0 0;
    color: #f8bf00;
}

.timeline-item .timeline-content {
    position: relative;
    top: 0;
    right: auto;
    /* left: -4%; */
    margin-left: 10px;
    /* background: #f8f9fa; */
    padding: 10px 20px;
    border-radius: 5px;
}

.date-label {
    position: relative;
    left: 0%;
    /* margin-left: -60px; */
    margin-bottom: 15px;
    font-weight: bold;
    background: #e9ecef;
    color: #f8bf00;
    padding: 5px 10px;
    border-radius: 3px;
}

@keyframes progressAnimationStrike {
    from { width: 0 }
    to   { width: 100% }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .timeline-icon {
        margin-bottom: 10px;
    }
    .status-label {
        font-size: 10px;
    }
}
