.tracker{
    background-image: url(../img/banner/10.jpg);
    padding-top: 8rem;
    padding-bottom: 4rem;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}
.tracker-container {
    background-color: #ff2f2f54;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
}

.track {
    text-align: center;
    color: #ffffff;
    font-weight: 600;
    font-family: cursive;
}

.track-form{
    display: flex;
    flex-direction: column;
}

.track-form label {
    margin-top: 10px;
    color: #d2d2d2;
    font-weight: 100;
}

.track-form input {
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #d4bebe;
    border-radius: 4px;
}
.track-btn{
    margin-top: 2rem;
}
#progress-display {
    margin-top: 20px;
    display: none;
}

.prot {
    margin: 5px 0;
    background-color: #d4bebe88;
    padding: 20px;
    border-radius: 10px;
}

.prot p{
    color: #000000;
}
/* Responsive Design */
@media (max-width: 600px) {
    .tracker-container {
        padding: 15px;
    }
}