.smm-button {
    font-family: "Poppins", Sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #FFFFFF;
    background-color: #1877F2;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #1877F2;
    border-radius: 50px 50px 50px 50px;
    padding: 10px 15px;
    transition: 0.5s all;
}

.smm-button-success {
    font-family: "Poppins", Sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #FFFFFF;
    background-color: #28a745;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #28a745;
    border-radius: 50px 50px 50px 50px;
    padding: 10px 15px;
    transition: 0.5s all;
    width: 100%;
}

.smm-button:hover {
    background-color: white;
    border-color: #1877F2;
    color: #1877F2;
}

.smm-del-button {
    font-family: "Poppins", Sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #FFFFFF;
    background-color: red;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: red;
    border-radius: 50px 50px 50px 50px;
    padding: 10px 15px;
    transition: 0.5s all;
}

.smm-del-button:hover {
    background-color: white;
    border-color: red;
    color: red;
}

a {
    text-decoration: none;
}

footer {
    text-align: center;
    padding: 15px 0;
    background-color: #f8f9fa;
    font-size: 0.875rem;
    color: #6c757d;
    border-top: 1px solid #dee2e6;
    /* position: fixed; */
    width: 100%;
    bottom: 0;
    left: 0;
}

footer a {
    color: #007bff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}