@media (max-width: 1400px) {
    h4 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .form-container {
        max-width: 450px;
    }
    .table {
        font-size: 10px;
    }

    h1 {
        font-size: 22px;
    }
    h2 {
        font-size: 20px;
    }
    h3 {
        font-size: 18px;
    }
    h4 {
        font-size: 16px;
        margin-bottom: 0px
    }
    label {
        font-size: 14px;
    }
}

@media (max-width: 450px) {
    .form-container {
        max-width: 350px;
    }

    .table {
        font-size: 8px;
    }

    h1 {
        font-size: 18px;
    }
    h2 {
        font-size: 16px;
    }
    h3 {
        font-size: 14px;
    }
    h4 {
        font-size: 12px;
        margin-bottom: 0px
    }
    label {
        font-size: 10px;
    }
}

@media (max-width: 400px) {
    .form-container {
        max-width: 320px;
        padding-bottom: 40px;
    }

    .table {
        font-size: 12px;
    }

    h1 {
        font-size: 22px;
    }
    h2 {
        font-size: 18px;
    }
    h3 {
        font-size: 12px;
    }
    h4 {
        font-size: 15px;
        margin-bottom: 0px
    }
    label {
        font-size: 12px;
    }
}

@media (max-width: 350px) {
    .form-container {
        max-width: 300px;
        padding-bottom: 30px;
    }
    .table {
        font-size: 10px;
    }

    h1 {
        font-size: 22px;
    }
    h2 {
        font-size: 18px;
    }
    h3 {
        font-size: 12px;
    }
    h4 {
        font-size: 15px;
        margin-bottom: 0px
    }
    label {
        font-size: 12px;
    }
}

.edit, .del {
    text-decoration: none;
    padding: 4px;
    border: 1px solid black;
    border-radius: 6px;
    color: white;
    font-weight: 500;
}