.progress{border: solid;border-color: white;border-width: 1px;margin-top: 5px;}
#status{height: 40px;font-size: larger;font-family: cursive;}
.social-buttons li {
    display: inline-block;
    margin: 5px;
}

.social-buttons li a {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: white;
    color: #EB2144; /* matches your theme color */
    text-align: center;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid #EB2144;
}

.social-buttons li a:hover {
    background-color: #EB2144;
    color: white;
    transform: scale(1.1);
}