@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    letter-spacing: normal;
    counter-reset: Serial;
}

p {
    font-family: 'Poppins', sans-serif;
}

.c-btn {
    background-color: #009fff;
    color: white;
    font-weight: 400;
    padding: 8px;
    margin-left: 12px;
    outline: none;
    border: none;
    border-radius: 6px;
}

.c-btn:hover {
    background: #3F5DA8;
}

.s-btn {
    background-color: #009fff;
    color: white;
    font-weight: 500;
    width: 5rem;
    padding: 8px;
    margin-left: 11.6rem;
    outline: none;
    border: none;
    border-radius: 6px;
}

.s-btn:hover {
    background: #3F5DA8;
}

tr td:first-child:before {
    counter-increment: Serial;
    content: counter(Serial);
}

#message {
    border-radius: 0;
    opacity: 0.7;
}

tr.exclude-counter td:first-child:before {
    counter-increment: none;
    content: none;
}