.function-btn {
    max-width: 180px;
    width: 100%;
    font-size: 16px;
    background: #4A154B;
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 5px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    font-size: 18px;
}

.function-delete-btn {
    margin-top: 0;
    background: #4A154B;
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 5px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.function-form {
    margin-bottom: 0;
}

.function-input-group {
    display: flex;
    align-items: center;
}

.function-input-group .function-form-group-custom {
    flex: 1;
    margin-right: 5px;
}

@media screen and (max-width: 600px) {
    .edicionProd-container {
        max-width: 100%;
    }

    .function-btn {
        max-width: 100%;
        height: 40px;
        font-size: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .function-delete-btn {
        justify-content: center;
        align-items: center;
        display: flex;
        text-align: center;
        margin-bottom: 20px;
        height: 40px;
        font-size: 15px;
        width: 100%;
        border-radius: 5px !important;
    }

    .function-input-group .function-form-group-custom {
        flex: 1 0 100%;
    }
}

@media(max-width: 440px) {
    .function-label {
        font-size: 14px;
    }
}